From ec20e2f72460010c4f59e6d59775671260e01026 Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Thu, 28 Apr 2016 12:29:16 -0700 Subject: altoslib: Make AltosPreferencesBackend abstract. Add set/put Serializable This lets us add functionality to this directly, such as the new serializable APIs. Signed-off-by: Keith Packard --- altoslib/AltosMapLoader.java | 2 -- 1 file changed, 2 deletions(-) (limited to 'altoslib/AltosMapLoader.java') diff --git a/altoslib/AltosMapLoader.java b/altoslib/AltosMapLoader.java index 9d4059e6..15fd756e 100644 --- a/altoslib/AltosMapLoader.java +++ b/altoslib/AltosMapLoader.java @@ -88,7 +88,6 @@ public class AltosMapLoader implements AltosMapTileListener, AltosMapStoreListen for (int y = (int) upper_left.y; y <= lower_right.y; y += AltosMap.px_size) { for (int x = (int) upper_left.x; x <= lower_right.x; x += AltosMap.px_size) { - listener.debug("Make tile at %d, %d\n", x, y); AltosPointInt point = new AltosPointInt(x, y); AltosLatLon ul = transform.lat_lon(point); AltosLatLon center = transform.lat_lon(new AltosPointDouble(x + AltosMap.px_size/2, y + AltosMap.px_size/2)); @@ -174,7 +173,6 @@ public class AltosMapLoader implements AltosMapTileListener, AltosMapStoreListen ++tiles_loaded_total; ++tiles_loaded_layer; - listener.debug("total %d layer %d\n", tiles_loaded_total, tiles_loaded_layer); if (tiles_loaded_layer == tiles_this_layer) { ++layers_loaded; -- cgit v1.2.3