From: Keith Packard Date: Sun, 10 Jan 2016 20:30:11 +0000 (-0800) Subject: altoslib: Remove debug message from AltosMap X-Git-Tag: 1.6.2^2~13 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=b560b20cc7d4d5ac219613b29707f7cb8a018273 altoslib: Remove debug message from AltosMap Signed-off-by: Keith Packard --- 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); }