Remove PlayerMoveEvent listener and deprecate MovableTool (#2083)

Remove PlayerMoveEventListener and deprecate MovableTool
This commit is contained in:
Hannes Greule
2023-02-07 23:07:57 +01:00
committed by GitHub
parent f9d6b127e6
commit 321a39f121
2 changed files with 8 additions and 21 deletions

View File

@ -2,8 +2,16 @@ package com.fastasyncworldedit.core.command.tool;
import com.sk89q.worldedit.entity.Player;
/**
* @deprecated This interface has no functionality anymore
*/
@Deprecated(forRemoval = true, since = "TODO")
public interface MovableTool {
/**
* @deprecated This interface has no functionality anymore
*/
@Deprecated(forRemoval = true, since = "TODO")
boolean move(Player player);
}