diff options
author | Keith Packard <keithp@keithp.com> | 2014-04-11 16:40:06 -0700 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2014-04-11 16:40:06 -0700 |
commit | 9e18c524fa2d1f648f265b3c3105f5ceacf06c10 (patch) | |
tree | 70eef3b41a40ca5401a45ae1894847a77409b203 /altosui/AltosFreqList.java | |
parent | 7b275ddfe20f54857d7d1abb98607c406b678090 (diff) |
altoslib/altosui/altosuilib/libaltos: Remove trailing whitespace
Just cleaning up the source code.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'altosui/AltosFreqList.java')
-rw-r--r-- | altosui/AltosFreqList.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/altosui/AltosFreqList.java b/altosui/AltosFreqList.java index 039b5f22..525e5ce5 100644 --- a/altosui/AltosFreqList.java +++ b/altosui/AltosFreqList.java @@ -37,7 +37,7 @@ public class AltosFreqList extends JComboBox { for (i = 0; i < getItemCount(); i++) { AltosFrequency f = (AltosFrequency) getItemAt(i); - + if (f.close(new_frequency)) { setSelectedIndex(i); return; @@ -45,7 +45,7 @@ public class AltosFreqList extends JComboBox { } for (i = 0; i < getItemCount(); i++) { AltosFrequency f = (AltosFrequency) getItemAt(i); - + if (new_frequency < f.frequency) break; } @@ -59,7 +59,7 @@ public class AltosFreqList extends JComboBox { public void set_product(String new_product) { product = new_product; } - + public void set_serial(int new_serial) { serial = new_serial; } |