summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Beattie <mike@ethernal.org>2012-09-14 13:16:48 +1200
committerMike Beattie <mike@ethernal.org>2012-09-14 13:16:48 +1200
commit6daf71d0af7ffdbbfdb7436edd536bc811850d42 (patch)
tree5cf0c5f328a510c46d1604f6e1717982c51367b1
parentd3d69bdecfcb45d1e3a8c6b10c80eef1afcc2310 (diff)
altosui: add type to … implements Comparable.
Signed-off-by: Mike Beattie <mike@ethernal.org>
-rw-r--r--altosui/AltosHexfile.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/altosui/AltosHexfile.java b/altosui/AltosHexfile.java
index 01515b86..56875f53 100644
--- a/altosui/AltosHexfile.java
+++ b/altosui/AltosHexfile.java
@@ -44,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;