diff options
author | Bdale Garbee <bdale@gag.com> | 2016-06-17 10:02:00 -0600 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2016-06-17 10:02:00 -0600 |
commit | 085336c45ce0577031a7af5de117a8b856160708 (patch) | |
tree | 13a145eab69e38f2658359fa8395e7257b3c3fb9 /altoslib/AltosMapCache.java | |
parent | 50c9a54ac6b04458970eedfa6d3e0e25f41c765f (diff) | |
parent | 639e461ded29a48c155afea12171cbfc191ccfd7 (diff) |
Merge branch 'branch-1.6' into debian
Diffstat (limited to 'altoslib/AltosMapCache.java')
-rw-r--r-- | altoslib/AltosMapCache.java | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/altoslib/AltosMapCache.java b/altoslib/AltosMapCache.java index 38e0f769..28f6b116 100644 --- a/altoslib/AltosMapCache.java +++ b/altoslib/AltosMapCache.java @@ -15,7 +15,7 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -package org.altusmetrum.altoslib_10; +package org.altusmetrum.altoslib_11; import java.io.*; import java.net.*; @@ -60,7 +60,6 @@ public class AltosMapCache implements AltosMapCacheListener { public synchronized void notify_tile(AltosMapTile tile, int status) { if (status == AltosMapTile.fetched) { - System.out.printf("tile fetched, loading image\n"); load(); } } @@ -139,8 +138,6 @@ public class AltosMapCache implements AltosMapCacheListener { elements[oldest].flush(); elements[oldest] = element; - System.out.printf("AltosMapCache.get image ? %s\n", - element.image == null ? "false" : "true"); return element.image; } } |