From: Keith Packard Date: Fri, 28 Oct 2022 04:35:55 +0000 (-0700) Subject: altosuilib: Remove some debug printfs X-Git-Tag: 1.9.12~1^2~5 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=74c73edc93110874636b4bbbe01f9f0327230b50 altosuilib: Remove some debug printfs Signed-off-by: Keith Packard --- diff --git a/altosuilib/AltosUIPreferences.java b/altosuilib/AltosUIPreferences.java index c40903ce..2066741b 100644 --- a/altosuilib/AltosUIPreferences.java +++ b/altosuilib/AltosUIPreferences.java @@ -130,22 +130,18 @@ public class AltosUIPreferences extends AltosPreferences { flush_preferences(); AltosUILib.set_fonts(font_size); for (AltosFontListener l : font_listeners) { - System.out.printf("notifying %s of font size change\n", l); l.font_size_changed(font_size); } - System.out.printf("all fonts changed\n"); } } public static void register_font_listener(AltosFontListener l) { - System.out.printf("register font listener\n"); synchronized (backend) { font_listeners.add(l); } } public static void unregister_font_listener(AltosFontListener l) { - System.out.printf("unregister font listener\n"); synchronized (backend) { font_listeners.remove(l); }