Code style changes.

This commit is contained in:
MobiusDev
2016-04-26 19:21:19 +00:00
parent 6a13705766
commit fc070c9238
768 changed files with 3338 additions and 4252 deletions

View File

@@ -25,7 +25,7 @@ import java.util.logging.Logger;
*/
public interface ITelnetHandler
{
public static Logger _log = Logger.getLogger(ITelnetHandler.class.getName());
Logger _log = Logger.getLogger(ITelnetHandler.class.getName());
/**
* this is the worker method that is called when someone uses an bypass command
@@ -35,11 +35,11 @@ public interface ITelnetHandler
* @param __uptime
* @return success
*/
public boolean useCommand(String command, PrintWriter _print, Socket _cSocket, int __uptime);
boolean useCommand(String command, PrintWriter _print, Socket _cSocket, int __uptime);
/**
* this method is called at initialization to register all bypasses automatically
* @return all known bypasses
*/
public String[] getCommandList();
String[] getCommandList();
}