Minor handler variables code format.
This commit is contained in:
		| @@ -24,7 +24,7 @@ import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance; | ||||
|  */ | ||||
| public class ExperienceGain implements IVoicedCommandHandler | ||||
| { | ||||
| 	private final String[] COMMANDS = new String[] | ||||
| 	private static final String[] COMMANDS = new String[] | ||||
| 	{ | ||||
| 		"expoff", | ||||
| 		"expon", | ||||
|   | ||||
| @@ -26,7 +26,7 @@ import org.l2jmobius.gameserver.model.actor.instance.PlayerInstance; | ||||
|  */ | ||||
| public class Banking implements IVoicedCommandHandler | ||||
| { | ||||
| 	private static final String[] _voicedCommands = | ||||
| 	private static final String[] VOICED_COMMANDS = | ||||
| 	{ | ||||
| 		"bank", | ||||
| 		"withdraw", | ||||
| @@ -80,6 +80,6 @@ public class Banking implements IVoicedCommandHandler | ||||
| 	@Override | ||||
| 	public String[] getVoicedCommandList() | ||||
| 	{ | ||||
| 		return _voicedCommands; | ||||
| 		return VOICED_COMMANDS; | ||||
| 	} | ||||
| } | ||||
| @@ -33,7 +33,7 @@ public class ChangePassword implements IVoicedCommandHandler | ||||
| { | ||||
| 	private static final Logger LOGGER = Logger.getLogger(ChangePassword.class.getName()); | ||||
| 	 | ||||
| 	private static final String[] _voicedCommands = | ||||
| 	private static final String[] VOICED_COMMANDS = | ||||
| 	{ | ||||
| 		"changepassword" | ||||
| 	}; | ||||
| @@ -111,6 +111,6 @@ public class ChangePassword implements IVoicedCommandHandler | ||||
| 	@Override | ||||
| 	public String[] getVoicedCommandList() | ||||
| 	{ | ||||
| 		return _voicedCommands; | ||||
| 		return VOICED_COMMANDS; | ||||
| 	} | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 MobiusDevelopment
					MobiusDevelopment