We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 24872f0 commit 7318af2Copy full SHA for 7318af2
modules/javafx.base/src/test/java/test/javafx/beans/value/ObservableValueFluentBindingsTest.java
@@ -928,7 +928,8 @@ void shouldReturnInitialValueAtTimeOfCreation() {
928
929
@Nested
930
class WithNotNullReturns_ObservableValue_Which {
931
- private ObjectProperty<Boolean> condition = new SimpleObjectProperty<Boolean>(true); // using object property here so it can be set to null for testing
+ // using object property here so it can be set to null for testing
932
+ private ObjectProperty<Boolean> condition = new SimpleObjectProperty<>(true);
933
private ObservableValue<String> observableValue = property.when(condition);
934
935
@Test
0 commit comments