Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v12' into v13
Browse files Browse the repository at this point in the history
  • Loading branch information
shedaniel committed Dec 21, 2023
2 parents 9c54a35 + 680116f commit 8330914
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,11 @@ public Optional<Object> getDefaultValue() {

@Override
public List<? extends NarratableEntry> narratables() {
return List.of(editBox);
return Collections.singletonList(editBox);
}

@Override
public List<? extends GuiEventListener> children() {
return List.of(editBox);
return Collections.singletonList(editBox);
}
}

0 comments on commit 8330914

Please sign in to comment.