summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--altoslib/AltosMapCache.java3
-rw-r--r--altoslib/AltosMapTile.java1
-rw-r--r--altoslib/AltosStateIterable.java1
3 files changed, 0 insertions, 5 deletions
diff --git a/altoslib/AltosMapCache.java b/altoslib/AltosMapCache.java
index 38e0f769..8100704f 100644
--- a/altoslib/AltosMapCache.java
+++ b/altoslib/AltosMapCache.java
@@ -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;
}
}
diff --git a/altoslib/AltosMapTile.java b/altoslib/AltosMapTile.java
index fdc8ff65..1d86309c 100644
--- a/altoslib/AltosMapTile.java
+++ b/altoslib/AltosMapTile.java
@@ -87,7 +87,6 @@ public abstract class AltosMapTile implements AltosFontListener, AltosMapStoreLi
}
public void notify_store(AltosMapStore store, int status) {
-// System.out.printf("AltosMapTile.notify_store %d\n", status);
notify_listeners(status);
}
diff --git a/altoslib/AltosStateIterable.java b/altoslib/AltosStateIterable.java
index a7baa85e..2d2d342f 100644
--- a/altoslib/AltosStateIterable.java
+++ b/altoslib/AltosStateIterable.java
@@ -32,7 +32,6 @@ public abstract class AltosStateIterable implements Iterable<AltosState> {
try {
in = new FileInputStream(file);
} catch (Exception e) {
- System.out.printf("Failed to open file '%s'\n", file);
return null;
}
if (file.getName().endsWith("telem"))