altosui: Remove another beep config debug printf
authorKeith Packard <keithp@keithp.com>
Fri, 16 May 2014 06:00:12 +0000 (00:00 -0600)
committerKeith Packard <keithp@keithp.com>
Fri, 16 May 2014 06:00:12 +0000 (00:00 -0600)
Signed-off-by: Keith Packard <keithp@keithp.com>
altosui/AltosConfigUI.java

index 0a5291ead16ab4a26dcb60145c4f99715ed89c30..6292f77870fd6c19a8cca0893572970dc111c9fb 100644 (file)
@@ -951,7 +951,6 @@ public class AltosConfigUI
 
        public void set_beep(int new_beep) {
                int new_freq = (int) Math.floor (AltosConvert.beep_value_to_freq(new_beep) + 0.5);
-               System.out.printf("set_beep %d %d\n", new_beep, new_freq);
                for (int i = 0; i < beep_values.length; i++)
                        if (new_beep == AltosConvert.beep_freq_to_value(Integer.parseInt(beep_values[i]))) {
                                beep_value.setSelectedIndex(i);