diff --git a/src/java/main/auto_ap/Sortable.java b/src/java/main/auto_ap/Sortable.java deleted file mode 100644 index a9f4f95b..00000000 --- a/src/java/main/auto_ap/Sortable.java +++ /dev/null @@ -1,15 +0,0 @@ -package auto_ap; - -public class Sortable implements Comparable { - public String a; - public Object b; - - public Sortable(String a, Object b) { - this.a = a; - this.b = b; - } - - public int compareTo(Sortable other) { - return a.compareTo(other.a); - } -}