Changed access to use this qualifier

This commit is contained in:
yueh
2014-12-29 15:13:47 +01:00
parent 2a5e57a59b
commit f471513bd0
604 changed files with 11573 additions and 11573 deletions
+2 -2
View File
@@ -91,8 +91,8 @@ public class ItemSorters
AEItemStack op2 = (AEItemStack) o2;
if ( Direction == SortDir.ASCENDING )
return secondarySort( op2.getModID().compareToIgnoreCase( op1.getModID() ), o1, o2 );
return secondarySort( op1.getModID().compareToIgnoreCase( op2.getModID() ), o2, o1 );
return this.secondarySort( op2.getModID().compareToIgnoreCase( op1.getModID() ), o1, o2 );
return this.secondarySort( op1.getModID().compareToIgnoreCase( op2.getModID() ), o2, o1 );
}
private int secondarySort(int compareToIgnoreCase, IAEItemStack o1, IAEItemStack o2)