diff options
author | Keith Packard <keithp@keithp.com> | 2014-05-16 00:00:12 -0600 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-05-16 00:00:12 -0600 |
commit | f3544daf08f38aa8e28ca214a19ab7fd47c0c802 (patch) | |
tree | 730aac768dd97650d0ef39652275cc15b95d63dc /altosui | |
parent | eeacc001ba089b4bf5552b8ef36e61a0a96efabe (diff) |
altosui: Remove another beep config debug printf
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui')
-rw-r--r-- | altosui/AltosConfigUI.java | 1 |
1 files changed, 0 insertions, 1 deletions
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); |