summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/command/PluginCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/java/org/bukkit/command/PluginCommand.java')
-rw-r--r--src/main/java/org/bukkit/command/PluginCommand.java21
1 files changed, 12 insertions, 9 deletions
diff --git a/src/main/java/org/bukkit/command/PluginCommand.java b/src/main/java/org/bukkit/command/PluginCommand.java
index f90ee7e0..3bfa31fc 100644
--- a/src/main/java/org/bukkit/command/PluginCommand.java
+++ b/src/main/java/org/bukkit/command/PluginCommand.java
@@ -104,17 +104,20 @@ public final class PluginCommand extends Command implements PluginIdentifiableCo
}
/**
- * {@inheritDoc}<br>
- * <br>
- * Delegates to the tab completer if present.<br>
- * If it is not present or returns null, will delegate to the current command
- * executor if it implements {@link TabCompleter}. If a non-null list has not
- * been found, will default to standard player name completion in
- * {@link Command#tabComplete(CommandSender, String, String[])}.<br>
- * <br>
+ * {@inheritDoc}
+ * <p>
+ * Delegates to the tab completer if present.
+ * <p>
+ * If it is not present or returns null, will delegate to the current
+ * command executor if it implements {@link TabCompleter}. If a non-null
+ * list has not been found, will default to standard player name
+ * completion in {@link
+ * Command#tabComplete(CommandSender, String, String[])}.
+ * <p>
* This method does not consider permissions.
*
- * @throws CommandException if the completer or executor throw an exception during the process of tab-completing.
+ * @throws CommandException if the completer or executor throw an
+ * exception during the process of tab-completing.
* @throws IllegalArgumentException if sender, alias, or args is null
*/
@Override