Minor: Fix forgotten param documentation in JavaDoc

This commit is contained in:
ljacqu 2018-01-16 20:40:21 +01:00
parent f19f8502d8
commit 7f77f30439

View File

@ -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<String> 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<String> otherAccounts) {
final int numberOfOtherAccounts = otherAccounts.size();