Skip to content

Commit c036b38

Browse files
author
Nicolai Parlog
committed
'NestedProperty' now implements 'ReadOnlyNestedProperty'.
1 parent 78d26e6 commit c036b38

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/org/codefx/libfx/nesting/property/NestedProperty.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import javafx.beans.property.Property;
44

5-
import org.codefx.libfx.nesting.Nested;
65
import org.codefx.libfx.nesting.Nesting;
76

87
/**
@@ -21,6 +20,6 @@
2120
* @param <T>
2221
* the type of the value wrapped by the property
2322
*/
24-
public interface NestedProperty<T> extends Nested, Property<T> {
23+
public interface NestedProperty<T> extends Property<T>, ReadOnlyNestedProperty<T> {
2524
// no additional members defined
2625
}

0 commit comments

Comments
 (0)