mirror of
https://github.com/proxiodev/RedisBungee.git
synced 2024-11-04 20:38:02 +00:00
Remove unnecessary public in some methods in plugin interface
This commit is contained in:
parent
7ba54ebfe2
commit
b7433bc9a3
@ -68,22 +68,22 @@ public interface RedisBungeePlugin<P> extends EventsPlatform {
|
||||
|
||||
boolean isOnlineMode();
|
||||
|
||||
public P getPlayer(UUID uuid);
|
||||
P getPlayer(UUID uuid);
|
||||
|
||||
public P getPlayer(String name);
|
||||
P getPlayer(String name);
|
||||
|
||||
public UUID getPlayerUUID(String player);
|
||||
UUID getPlayerUUID(String player);
|
||||
|
||||
|
||||
public String getPlayerName(UUID player);
|
||||
String getPlayerName(UUID player);
|
||||
|
||||
boolean handlePlatformKick(UUID uuid, Component message);
|
||||
|
||||
public String getPlayerServerName(P player);
|
||||
String getPlayerServerName(P player);
|
||||
|
||||
public boolean isPlayerOnAServer(P player);
|
||||
boolean isPlayerOnAServer(P player);
|
||||
|
||||
public InetAddress getPlayerIp(P player);
|
||||
InetAddress getPlayerIp(P player);
|
||||
|
||||
void executeAsync(Runnable runnable);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user