mirror of
https://github.com/SunNetservers/MiniGames.git
synced 2024-12-05 00:43:15 +01:00
Fixes visibility of some methods
This commit is contained in:
parent
162aff0c1f
commit
d8bf77d317
@ -122,7 +122,7 @@ public final class DropperArenaStorageHelper {
|
|||||||
* @param arena <p>The arena to save</p>
|
* @param arena <p>The arena to save</p>
|
||||||
* @throws IOException <p>If unable to save the arena data</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
|
//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
|
// must be stored as well
|
||||||
@NotNull ConfigurationSection configSection = arenaSection.createSection(arena.getArenaId().toString());
|
@NotNull ConfigurationSection configSection = arenaSection.createSection(arena.getArenaId().toString());
|
||||||
|
@ -124,7 +124,7 @@ public final class ParkourArenaStorageHelper {
|
|||||||
* @param arena <p>The arena to save</p>
|
* @param arena <p>The arena to save</p>
|
||||||
* @throws IOException <p>If unable to save the arena data</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
|
//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
|
// must be stored as well
|
||||||
@NotNull ConfigurationSection configSection = arenaSection.createSection(arena.getArenaId().toString());
|
@NotNull ConfigurationSection configSection = arenaSection.createSection(arena.getArenaId().toString());
|
||||||
|
Loading…
Reference in New Issue
Block a user