From: Keith Packard Date: Wed, 11 May 2016 05:49:04 +0000 (-0700) Subject: altoslib: Remove some debug printf calls X-Git-Tag: 1.6.4~1^2~54 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=42021d9fdc6f7a74cc9b20ebf3cf60b4c5f4ea82 altoslib: Remove some debug printf calls Signed-off-by: Keith Packard --- 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 { 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"))