Code style changes.
This commit is contained in:
@@ -22,7 +22,7 @@ import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance;
|
||||
|
||||
public interface IUserCommandHandler
|
||||
{
|
||||
public static Logger _log = Logger.getLogger(IUserCommandHandler.class.getName());
|
||||
Logger _log = Logger.getLogger(IUserCommandHandler.class.getName());
|
||||
|
||||
/**
|
||||
* this is the worker method that is called when someone uses an admin command.
|
||||
@@ -30,11 +30,11 @@ public interface IUserCommandHandler
|
||||
* @param activeChar
|
||||
* @return command success
|
||||
*/
|
||||
public boolean useUserCommand(int id, L2PcInstance activeChar);
|
||||
boolean useUserCommand(int id, L2PcInstance activeChar);
|
||||
|
||||
/**
|
||||
* this method is called at initialization to register all the item ids automatically
|
||||
* @return all known itemIds
|
||||
*/
|
||||
public int[] getUserCommandList();
|
||||
int[] getUserCommandList();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user