Skip to content

Commit

Permalink
Make IModelTemplateExtension.withCustomData publicly visible
Browse files Browse the repository at this point in the history
  • Loading branch information
ApexModder committed Nov 24, 2024
1 parent 5edca08 commit ef5aee3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ private ModelTemplate self() {
return (ModelTemplate) this;
}

private ModelTemplate withCustomData(Consumer<ModelTemplateWithCustomData> mutator) {
default ModelTemplate withCustomData(Consumer<ModelTemplateWithCustomData> mutator) {
var template = new ModelTemplateWithCustomData(self());
mutator.accept(template);
return template;
Expand Down

0 comments on commit ef5aee3

Please sign in to comment.