Bläddra i källkod

these javadocs are straight up wrong

nossr50 4 år sedan
förälder
incheckning
8e17090cc7
1 ändrade filer med 0 tillägg och 16 borttagningar
  1. 0 16
      src/main/java/com/gmail/nossr50/util/commands/CommandUtils.java

+ 0 - 16
src/main/java/com/gmail/nossr50/util/commands/CommandUtils.java

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