Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/v10' into v11
Browse files Browse the repository at this point in the history
  • Loading branch information
shedaniel committed Dec 21, 2023
2 parents 56ab83b + d55b9e5 commit f623373
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 f623373

Please sign in to comment.