Skip to content

Commit

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

Please sign in to comment.