side panel.

This commit is contained in:
BC
2019-01-30 10:31:19 -08:00
parent bda66868c9
commit e2e37ddd2c

View File

@@ -1,15 +0,0 @@
package auto_ap;
public class Sortable implements Comparable<Sortable> {
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);
}
}