From: Keith Packard Date: Fri, 16 May 2014 06:00:12 +0000 (-0600) Subject: altosui: Remove another beep config debug printf X-Git-Tag: 1.3.2.2~88 X-Git-Url: https://git.gag.com/?p=fw%2Faltos;a=commitdiff_plain;h=f3544daf08f38aa8e28ca214a19ab7fd47c0c802;ds=inline altosui: Remove another beep config debug printf Signed-off-by: Keith Packard --- diff --git a/altosui/AltosConfigUI.java b/altosui/AltosConfigUI.java index 0a5291ea..6292f778 100644 --- a/altosui/AltosConfigUI.java +++ b/altosui/AltosConfigUI.java @@ -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);