side panel.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user