Skip to content

Commit 7318af2

Browse files
committed
Fix formatting in test
1 parent 24872f0 commit 7318af2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

modules/javafx.base/src/test/java/test/javafx/beans/value/ObservableValueFluentBindingsTest.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -928,7 +928,8 @@ void shouldReturnInitialValueAtTimeOfCreation() {
928928

929929
@Nested
930930
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
931+
// using object property here so it can be set to null for testing
932+
private ObjectProperty<Boolean> condition = new SimpleObjectProperty<>(true);
932933
private ObservableValue<String> observableValue = property.when(condition);
933934

934935
@Test

0 commit comments

Comments
 (0)