diff options
author | Keith Packard <keithp@keithp.com> | 2016-01-10 12:30:11 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2016-01-10 12:31:46 -0800 |
commit | b560b20cc7d4d5ac219613b29707f7cb8a018273 (patch) | |
tree | d7bfaf7bb230ff0137b82c3bcdb46e196cc57027 /altoslib/AltosMap.java | |
parent | 88671454e931ea5e5946438df3c437493e2356c8 (diff) |
altoslib: Remove debug message from AltosMap
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosMap.java')
-rw-r--r-- | altoslib/AltosMap.java | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/altoslib/AltosMap.java b/altoslib/AltosMap.java index a2855192..4a8a9fda 100644 --- a/altoslib/AltosMap.java +++ b/altoslib/AltosMap.java @@ -324,7 +324,6 @@ public class AltosMap implements AltosMapTileListener, AltosMapStoreListener { if (!tiles.containsKey(point)) { AltosLatLon ul = transform.lat_lon(point); AltosLatLon center = transform.lat_lon(new AltosPointDouble(x + AltosMap.px_size/2, y + AltosMap.px_size/2)); - debug("make tile %g,%g\n", center.lat, center.lon); AltosMapTile tile = map_interface.new_tile(this, ul, center, zoom, maptype, px_size); tiles.put(point, tile); } |