Skip to content
Snippets Groups Projects
Verified Commit 578fba58 authored by Fredrik Roubert's avatar Fredrik Roubert
Browse files

ITS#4501 Delete unused class Compare.

JDK 1.5 removed the String.compareTo(Object) method so this class won't
compile anymore, but luckily it's unused and can simply be deleted.
parent f200ebd2
No related branches found
No related tags found
1 merge request!6ITS#4501 Update code base to Java8.
...@@ -360,12 +360,6 @@ public class LDIF { ...@@ -360,12 +360,6 @@ public class LDIF {
} }
} }
class Compare implements Comparator {
public int compare(Object v1, Object v2) {
return ((String) v1).compareTo(v2);
}
}
class Entry { class Entry {
String dn; String dn;
HashMap atts; HashMap atts;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment