Code style changes.
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
Reference in New Issue
Block a user