Skip to content

Commit

Permalink
Inline some stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
DerEchtePilz committed Sep 28, 2024
1 parent e6f2387 commit c7db0d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,10 +91,7 @@ public static DefaultBukkitConfig createDefault() {
Map<String, CommentedSection> sections = new LinkedHashMap<>();
sections.put("messages", SECTION_MESSAGE);

return DefaultBukkitConfig.create(
options,
sections
);
return DefaultBukkitConfig.create(options, sections);
}

public static DefaultBukkitConfig create(Map<String, CommentedConfigOption<?>> options, Map<String, CommentedSection> sections) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,7 @@ public static DefaultVelocityConfig createDefault() {
Map<String, CommentedSection> sections = new LinkedHashMap<>();
sections.put("messages", SECTION_MESSAGE);

return DefaultVelocityConfig.create(
options,
sections
);
return DefaultVelocityConfig.create(options, sections);
}

public static DefaultVelocityConfig create(Map<String, CommentedConfigOption<?>> options, Map<String, CommentedSection> sections) {
Expand Down

0 comments on commit c7db0d5

Please sign in to comment.