From 7f77f304396cbead58f026dbf4b759fef9816e5a Mon Sep 17 00:00:00 2001 From: ljacqu Date: Tue, 16 Jan 2018 20:40:21 +0100 Subject: [PATCH] Minor: Fix forgotten param documentation in JavaDoc --- .../fr/xephi/authme/settings/commandconfig/CommandManager.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main/java/fr/xephi/authme/settings/commandconfig/CommandManager.java b/src/main/java/fr/xephi/authme/settings/commandconfig/CommandManager.java index 08a1fc2b..12579cba 100644 --- a/src/main/java/fr/xephi/authme/settings/commandconfig/CommandManager.java +++ b/src/main/java/fr/xephi/authme/settings/commandconfig/CommandManager.java @@ -72,6 +72,7 @@ public class CommandManager implements Reloadable { * Runs the configured commands for when a player has logged in successfully. * * @param player the player that logged in + * @param otherAccounts account names whose IP is the same as the player's */ public void runCommandsOnLogin(Player player, List otherAccounts) { final int numberOfOtherAccounts = otherAccounts.size(); @@ -92,6 +93,7 @@ public class CommandManager implements Reloadable { * Runs the configured commands for when a player logs in the first time. * * @param player the player that has logged in for the first time + * @param otherAccounts account names whose IP is the same as the player's */ public void runCommandsOnFirstLogin(Player player, List otherAccounts) { final int numberOfOtherAccounts = otherAccounts.size();