decompiler: cleanup

This commit is contained in:
Egor.Ushakov
2015-03-27 12:56:07 +03:00
parent d5e22fe0c9
commit 262d580ccc
28 changed files with 107 additions and 98 deletions

View File

@@ -219,7 +219,7 @@ public class FastSparseSetFactory<E> {
index = factory.addElement(element);
}
return index[0] >= data.length ? false : ((data[index[0]] & index[1]) != 0);
return index[0] < data.length && ((data[index[0]] & index[1]) != 0);
}
public boolean contains(FastSparseSet<E> set) {