Remove unnecessary public in some methods in plugin interface

This commit is contained in:
mohammed jasem alaajel 2023-09-12 16:06:36 +04:00
parent 769f086cb5
commit 570c68d266
No known key found for this signature in database
1 changed files with 7 additions and 7 deletions

View File

@ -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);