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/AltosHexfile.java | |
| parent | 31f5a02654cbf172beed25f4c518dfb7be8c714e (diff) | |
| parent | 6e0d672b8a516a604d8ea1abd2bed113c608143f (diff) | |
Merge branch 'prefs_interface' into altosdroid
Diffstat (limited to 'altosui/AltosHexfile.java')
| -rw-r--r-- | altosui/AltosHexfile.java | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/altosui/AltosHexfile.java b/altosui/AltosHexfile.java index d52b46c3..56875f53 100644 --- a/altosui/AltosHexfile.java +++ b/altosui/AltosHexfile.java @@ -17,13 +17,9 @@ package altosui; -import java.lang.*; import java.io.*; -import java.util.concurrent.LinkedBlockingQueue; import java.util.LinkedList; -import java.util.Iterator; import java.util.Arrays; -import org.altusmetrum.AltosLib.*; class HexFileInputStream extends PushbackInputStream { public int line; @@ -48,7 +44,7 @@ class HexFileInputStream extends PushbackInputStream { } } -class HexRecord implements Comparable { +class HexRecord implements Comparable<Object> { public int address; public int type; public byte checksum; |
