Skip to content

Commit 74d147c

Browse files
committed
Update return type of createMediator method
1 parent 9007ed9 commit 74d147c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

mvvm4fx-core/src/main/java/com/techsenger/mvvm4fx/core/AbstractComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,5 +290,5 @@ protected void setHistoryProvider(HistoryProvider historyProvider) {
290290
this.historyProvider = historyProvider;
291291
}
292292

293-
protected abstract AbstractComponent.Mediator createMediator();
293+
protected abstract Mediator createMediator();
294294
}

mvvm4fx-core/src/main/java/com/techsenger/mvvm4fx/core/AbstractParentComponent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ public ObservableList<ChildComponent<?>> getChildren() {
108108
}
109109

110110
@Override
111-
protected abstract AbstractParentComponent.Mediator createMediator();
111+
protected abstract Mediator createMediator();
112112

113113
protected void addChild(ChildComponent<?> child) {
114114
this.modifiableChildren.add(child);

0 commit comments

Comments
 (0)