diff options
author | Mike Beattie <mike@ethernal.org> | 2012-09-14 13:13:35 +1200 |
---|---|---|
committer | Mike Beattie <mike@ethernal.org> | 2012-09-14 13:13:35 +1200 |
commit | ce1b19a012a2c1c623b03efb93b881e297736718 (patch) | |
tree | 4b8872dde26d43a4d10f65aa412da8970839c2e7 /altosui/AltosUI.java | |
parent | 382c54a0d052c8975b57c995ef83bc8934bde242 (diff) |
altosui: comment out un-used fields and methods
Signed-off-by: Mike Beattie <mike@ethernal.org>
Diffstat (limited to 'altosui/AltosUI.java')
-rw-r--r-- | altosui/AltosUI.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java index e4af6b3b..b5cbefe7 100644 --- a/altosui/AltosUI.java +++ b/altosui/AltosUI.java @@ -87,7 +87,7 @@ public class AltosUI extends AltosFrame { c.weighty = 1; b = new JButton(label); - Dimension ps = b.getPreferredSize(); + //Dimension ps = b.getPreferredSize(); gridbag.setConstraints(b, c); add(b, c); @@ -441,7 +441,7 @@ public class AltosUI extends AltosFrame { return null; } AltosRecordIterable recs; - AltosReplayReader reader; + //AltosReplayReader reader; if (file.getName().endsWith("eeprom")) { recs = new AltosEepromIterable(in); } else { |