altosuilib: Remove some debug printfs
[fw/altos] / 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);
                }