altosuilib: Remove some debug printfs
authorKeith Packard <keithp@keithp.com>
Fri, 28 Oct 2022 04:35:55 +0000 (21:35 -0700)
committerKeith Packard <keithp@keithp.com>
Sat, 29 Oct 2022 04:33:07 +0000 (21:33 -0700)
Signed-off-by: Keith Packard <keithp@keithp.com>
altosuilib/AltosUIPreferences.java

index c40903ced0c37c590214b11d764af264bde8714e..2066741bd8bfa450a617c080fc2130d0a98c45f2 100644 (file)
@@ -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);
                }