1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Cosmetics.

This commit is contained in:
Sergey Prigogin 2011-03-09 18:04:02 +00:00
parent e58416919f
commit 8934124312

View file

@ -33,7 +33,7 @@ public class DefaultFragmentBindingComparator implements IIndexFragmentBindingCo
return -1; return -1;
if (a.length > b.length) if (a.length > b.length)
return 1; return 1;
for(int i= 0; i < a.length; i++) { for (int i= 0; i < a.length; i++) {
int cmp= a[i].compareTo(b[i]); int cmp= a[i].compareTo(b[i]);
if (cmp != 0) if (cmp != 0)
return cmp; return cmp;