Fixes visibility of some methods

This commit is contained in:
Kristian Knarvik 2023-09-17 15:18:51 +02:00
parent 162aff0c1f
commit d8bf77d317
2 changed files with 2 additions and 2 deletions

View File

@ -122,7 +122,7 @@ public final class DropperArenaStorageHelper {
* @param arena <p>The arena to save</p>
* @throws IOException <p>If unable to save the arena data</p>
*/
public static void saveDropperArena(ConfigurationSection arenaSection, DropperArena arena) throws IOException {
private static void saveDropperArena(ConfigurationSection arenaSection, DropperArena arena) throws IOException {
//Note: While the arena name is used as the key, as the key has to be sanitized, the un-sanitized arena name
// must be stored as well
@NotNull ConfigurationSection configSection = arenaSection.createSection(arena.getArenaId().toString());

View File

@ -124,7 +124,7 @@ public final class ParkourArenaStorageHelper {
* @param arena <p>The arena to save</p>
* @throws IOException <p>If unable to save the arena data</p>
*/
public static void saveParkourArena(ConfigurationSection arenaSection, ParkourArena arena) throws IOException {
private static void saveParkourArena(ConfigurationSection arenaSection, ParkourArena arena) throws IOException {
//Note: While the arena name is used as the key, as the key has to be sanitized, the un-sanitized arena name
// must be stored as well
@NotNull ConfigurationSection configSection = arenaSection.createSection(arena.getArenaId().toString());