summaryrefslogtreecommitdiff
path: root/altoslib
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2016-05-10 22:49:04 -0700
committerKeith Packard <keithp@keithp.com>2016-05-11 23:22:15 -0700
commit42021d9fdc6f7a74cc9b20ebf3cf60b4c5f4ea82 (patch)
treebcbbeb9cc0f28338fa67bf16c7b0fb387c70902e /altoslib
parent60f4d69592c440ab7bb67a04f4c07fc7279d2c20 (diff)
altoslib: Remove some debug printf calls
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altoslib')
-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"))