Fix non-idea-compilable errors
This commit is contained in:
@@ -129,7 +129,7 @@ public final class ExtendedProperties {
|
|||||||
public static ObjectProperty<Boolean> reservedSelectedPropertyFor(CheckBox checkbox) {
|
public static ObjectProperty<Boolean> reservedSelectedPropertyFor(CheckBox checkbox) {
|
||||||
return (ObjectProperty<Boolean>) checkbox.getProperties().computeIfAbsent(
|
return (ObjectProperty<Boolean>) checkbox.getProperties().computeIfAbsent(
|
||||||
PROP_PREFIX + ".checkbox.reservedSelected",
|
PROP_PREFIX + ".checkbox.reservedSelected",
|
||||||
any -> new MappedProperty<>(checkbox, "ext.reservedSelected",
|
any -> new MappedProperty<Boolean, Boolean>(checkbox, "ext.reservedSelected",
|
||||||
checkbox.selectedProperty(), it -> !it, it -> !it));
|
checkbox.selectedProperty(), it -> !it, it -> !it));
|
||||||
}
|
}
|
||||||
// ====
|
// ====
|
||||||
|
|||||||
Reference in New Issue
Block a user