diff options
| author | Keith Packard <keithp@keithp.com> | 2016-04-28 12:29:16 -0700 | 
|---|---|---|
| committer | Keith Packard <keithp@keithp.com> | 2016-04-28 12:29:16 -0700 | 
| commit | ec20e2f72460010c4f59e6d59775671260e01026 (patch) | |
| tree | 26550cdb6537581616e5ee8505dd80613a1f7c52 /altoslib/AltosMapLoader.java | |
| parent | 3c7b68b8a513b611500dfd734182e1a2e7bdd40c (diff) | |
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 <keithp@keithp.com>
Diffstat (limited to 'altoslib/AltosMapLoader.java')
| -rw-r--r-- | altoslib/AltosMapLoader.java | 2 | 
1 files changed, 0 insertions, 2 deletions
| 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; | 
