Skip to content

Commit dc5e95e

Browse files
committed
Removed a useless method
1 parent afea548 commit dc5e95e

File tree

2 files changed

+1
-13
lines changed

2 files changed

+1
-13
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
}
1010

1111
group = "one.tranic"
12-
version = "1.2.3"
12+
version = "1.2.4"
1313

1414
repositories {
1515
mavenCentral()

src/main/java/one/tranic/t/base/player/Players.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ public class Players {
1616
private static Function<UUID, Player<?>> getPlayerWithUUIDMethod;
1717
private static Supplier<List<Player<?>>> getOnlinePlayersMethod;
1818
private static Supplier<List<?>> getPlatformOnlinePlayersMethod;
19-
private static Supplier<List<?>> getPlatformAltPlayersMethod;
2019
private static Supplier<List<String>> getOnlinePlayersNameMethod;
2120

2221
/**
@@ -77,17 +76,6 @@ public class Players {
7776
return end;
7877
}
7978

80-
/**
81-
* Retrieves a list of alternate players specific to the platform.
82-
* The exact type and nature of these players depend on the platform's implementation.
83-
*
84-
* @return a {@code List<?>} representing the alternate players for the platform;
85-
* the list is guaranteed to be non-null.
86-
*/
87-
public static @NotNull List<?> getPlatformAltPlayers() {
88-
return getPlatformAltPlayersMethod.get();
89-
}
90-
9179
/**
9280
* Retrieves a list of all online players currently connected to the platform.
9381
* <p>

0 commit comments

Comments
 (0)