summaryrefslogtreecommitdiff
path: root/altosui/AltosUI.java
diff options
context:
space:
mode:
authorKeith Packard <keithp@keithp.com>2012-09-20 11:29:55 +0200
committerKeith Packard <keithp@keithp.com>2012-09-20 11:29:55 +0200
commit19243ecc9b5bbdcc069ae24acf1ca807322c84d8 (patch)
tree649c4af273157afdebea960ab3692881ace8356d /altosui/AltosUI.java
parent90c1b6db8d1f401a992fe44983b3df64739fe263 (diff)
parent0ef8b7148784ed5bcbea21dde313fb02f50ef734 (diff)
Merge remote-tracking branch 'mjb/altosui_mjb'
Diffstat (limited to 'altosui/AltosUI.java')
-rw-r--r--altosui/AltosUI.java11
1 files changed, 2 insertions, 9 deletions
diff --git a/altosui/AltosUI.java b/altosui/AltosUI.java
index c1a66b83..b5cbefe7 100644
--- a/altosui/AltosUI.java
+++ b/altosui/AltosUI.java
@@ -20,17 +20,10 @@ package altosui;
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
-import javax.swing.filechooser.FileNameExtensionFilter;
-import javax.swing.table.*;
import java.io.*;
-import java.util.*;
-import java.text.*;
-import java.util.prefs.*;
import java.util.concurrent.*;
import org.altusmetrum.AltosLib.*;
-import libaltosJNI.*;
-
public class AltosUI extends AltosFrame {
public AltosVoice voice = new AltosVoice();
@@ -94,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);
@@ -448,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 {