瀏覽代碼

these javadocs are straight up wrong

nossr50 4 年之前
父節點
當前提交
8e17090cc7
共有 1 個文件被更改,包括 0 次插入16 次删除
  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<>();