add comments

This commit is contained in:
Hannes Janetzek
2013-05-07 16:10:15 +02:00
parent 05d4dba5fc
commit 083932abac
2 changed files with 2 additions and 1 deletions

View File

@@ -74,6 +74,7 @@ public class TileDistanceSort {
int n = start - left;
if (n < 16) {
// shift in loop for less than 16 items
int end = left + n;
while (end-- > left)
a[end + 1] = a[end];

View File

@@ -93,7 +93,7 @@ public class MapTileLoader extends TileLoader implements IRenderCallback, IMapDa
// currently processed MapElement
private MapElement mElement;
// current line layer, will be added to outline layers
// current line layer (will be used for following outline layers)
private LineLayer mCurLineLayer;
private int mDrawingLayer;