removing this task that i once thought i needed and now realize that it is completely unnecessary

This commit is contained in:
Shrek5InTheatres2019 2019-09-06 16:46:38 -07:00
parent c6c1c39a98
commit 478d542981

View File

@ -1,20 +0,0 @@
package com.gmail.nossr50.runnables.player;
import com.gmail.nossr50.datatypes.player.PlayerProfile;
import com.gmail.nossr50.mcMMO;
import com.gmail.nossr50.util.EventUtils;
import org.bukkit.entity.Player;
import org.bukkit.scheduler.BukkitRunnable;
public class ExecutePlayerProfileLoadEventTask extends BukkitRunnable {
private Player player;
private PlayerProfile profile;
public ExecutePlayerProfileLoadEventTask(Player player, PlayerProfile profile){
this.player = player;
this.profile = profile;
}
@Override
public void run() {
EventUtils.callPlayerProfileLoadEvent(this.player, this.profile);
}
}