decompiler: cleanup
This commit is contained in:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user