fix the inversion
This commit is contained in:
parent
b50c5b5e5d
commit
342c0dab79
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ public class SimpleBitsetProperty extends EntityPropertyImpl<Boolean> {
|
||||||
private final boolean inverted;
|
private final boolean inverted;
|
||||||
|
|
||||||
public SimpleBitsetProperty(String name, int index, int bitmask, boolean inverted) {
|
public SimpleBitsetProperty(String name, int index, int bitmask, boolean inverted) {
|
||||||
super(name, !inverted, Boolean.class);
|
super(name, inverted, Boolean.class);
|
||||||
this.index = index;
|
this.index = index;
|
||||||
this.bitmask = bitmask;
|
this.bitmask = bitmask;
|
||||||
this.inverted = inverted;
|
this.inverted = inverted;
|
||||||
|
|
Loading…
Reference in a new issue