LDAP-268: Oops, Java7 specific API calls were used.

This commit is contained in:
Mattias Hellborg Arthursson
2013-09-29 16:58:24 +02:00
parent 9a8dadcdbe
commit 652ee35379

View File

@@ -38,7 +38,7 @@ import java.util.TreeSet;
return 0;
}
return Integer.compare(a1.getDnAttribute().index(), a2.getDnAttribute().index());
return Integer.valueOf(a1.getDnAttribute().index()).compareTo(a2.getDnAttribute().index());
}
});