mirror of
https://gitlab.com/phoenix-dvpmt/mmocore.git
synced 2024-11-26 00:35:17 +01:00
Debug messages duh
This commit is contained in:
parent
3248ffe541
commit
9546a95a59
@ -1,6 +1,5 @@
|
||||
package net.Indyuce.mmocore.util;
|
||||
|
||||
import net.Indyuce.mmocore.MMOCore;
|
||||
import org.apache.commons.lang.Validate;
|
||||
import org.bukkit.configuration.ConfigurationSection;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
@ -8,7 +7,6 @@ import org.jetbrains.annotations.NotNull;
|
||||
import java.util.List;
|
||||
import java.util.function.BiConsumer;
|
||||
import java.util.function.Function;
|
||||
import java.util.logging.Level;
|
||||
|
||||
public class ConfigUtils {
|
||||
|
||||
@ -24,7 +22,6 @@ public class ConfigUtils {
|
||||
final int index = Integer.parseInt(key);
|
||||
final ConfigurationSection subconfig = config.getConfigurationSection(key);
|
||||
Validate.notNull(subconfig, "Not a configuration section");
|
||||
MMOCore.plugin.getLogger().log(Level.INFO, "Received " + index);
|
||||
|
||||
// Replace
|
||||
if (index < expectedOrdinal) list.set(index, subconfigHandler.apply(subconfig));
|
||||
|
Loading…
Reference in New Issue
Block a user