not needed

This commit is contained in:
Roman Zhuravlev 2023-08-11 19:32:31 +05:00
parent 322daaa83c
commit 6b74f1711f

View file

@ -1,15 +0,0 @@
package org.zhdev.config;
import org.bukkit.plugin.Plugin;
import java.io.File;
public interface BukkitConfig extends Config {
File load(Plugin plugin, String path) throws ConfigException;
File load(Plugin plugin) throws ConfigException;
File saveIfEmpty(Plugin plugin, String path) throws ConfigException;
File saveIfEmpty(Plugin plugin) throws ConfigException;
}