these javadocs are straight up wrong

This commit is contained in:
nossr50 2020-12-08 15:36:24 -08:00
parent 3cb63202a3
commit 8e17090cc7

View File

@ -249,13 +249,6 @@ public final class CommandUtils {
return onlinePlayerNames;
}
/**
* Get a matched player name if one was found in the database.
*
* @param partialName Name to match
*
* @return Matched name or {@code partialName} if no match was found
*/
public static String getMatchedPlayerName(String partialName) {
if (Config.getInstance().getMatchOfflinePlayers()) {
List<String> matches = matchPlayer(partialName);
@ -275,15 +268,6 @@ public final class CommandUtils {
return partialName;
}
/**
* Attempts to match any player names with the given name, and returns a list of all possibly matches.
*
* This list is not sorted in any particular order.
* If an exact match is found, the returned list will only contain a single result.
*
* @param partialName Name to match
* @return List of all possible names
*/
private static List<String> matchPlayer(String partialName) {
List<String> matchedPlayers = new ArrayList<>();