diff options
| author | Mike Beattie <mike@ethernal.org> | 2012-09-16 22:27:04 +1200 | 
|---|---|---|
| committer | Mike Beattie <mike@ethernal.org> | 2012-09-16 22:27:04 +1200 | 
| commit | 52d3cad4f744140e1aa06fdfc0d49a0cf8734fd4 (patch) | |
| tree | 2135a1ea041198783910252fb4a822ee9be566bd /altosui/AltosUI.java | |
| parent | 31f5a02654cbf172beed25f4c518dfb7be8c714e (diff) | |
| parent | 6e0d672b8a516a604d8ea1abd2bed113c608143f (diff) | |
Merge branch 'prefs_interface' into altosdroid
Diffstat (limited to 'altosui/AltosUI.java')
| -rw-r--r-- | altosui/AltosUI.java | 11 | 
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 {  | 
