Fixed Priority Order, Added Read/Write and some refactoring.

This commit is contained in:
AlgorithmX2
2014-01-26 00:48:09 -06:00
parent 68a1719794
commit 6ecb969801
8 changed files with 21 additions and 13 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ public class NetworkInventoryHandler<T extends IAEStack<T>> implements IMEInvent
@Override
public int compare(Integer o1, Integer o2)
{
return o1 - o2;
return o2 - o1;
}
};