Refactored functional interfaces

This commit is contained in:
BuildTools 2020-11-13 15:06:45 +00:00
parent c1ef549f24
commit 420b27948d
4 changed files with 4 additions and 4 deletions

View File

@ -1,7 +1,7 @@
package com.willfp.ecoenchants.enchantments.util;
import com.willfp.ecoenchants.enchantments.itemtypes.Spell;
import com.willfp.ecoenchants.util.Callable;
import com.willfp.ecoenchants.util.interfaces.Callable;
import org.bukkit.entity.Player;
import java.util.UUID;

View File

@ -1,6 +1,6 @@
package com.willfp.ecoenchants.integrations.placeholder;
import com.willfp.ecoenchants.util.ObjectCallable;
import com.willfp.ecoenchants.util.interfaces.ObjectCallable;
import org.bukkit.entity.Player;
public class PlaceholderEntry {

View File

@ -1,4 +1,4 @@
package com.willfp.ecoenchants.util;
package com.willfp.ecoenchants.util.interfaces;
@FunctionalInterface
public interface Callable {

View File

@ -1,4 +1,4 @@
package com.willfp.ecoenchants.util;
package com.willfp.ecoenchants.util.interfaces;
@FunctionalInterface
public interface ObjectCallable<A, B> {