Removed unnecessary debug checks.
This commit is contained in:
@@ -98,30 +98,6 @@ public class GameStatusThread extends Thread
|
||||
|
||||
private void telnetOutput(int type, String text)
|
||||
{
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
if (type == 1)
|
||||
{
|
||||
LOGGER.info("TELNET | " + text);
|
||||
}
|
||||
else if (type == 2)
|
||||
{
|
||||
System.out.print("TELNET | " + text);
|
||||
}
|
||||
else if (type == 3)
|
||||
{
|
||||
System.out.print(text);
|
||||
}
|
||||
else if (type == 4)
|
||||
{
|
||||
LOGGER.info(text);
|
||||
}
|
||||
else
|
||||
{
|
||||
LOGGER.info("TELNET | " + text);
|
||||
}
|
||||
}
|
||||
else // only print output if the message is rejected
|
||||
if (type == 5)
|
||||
{
|
||||
LOGGER.info("TELNET | " + text);
|
||||
@@ -139,11 +115,6 @@ public class GameStatusThread extends Thread
|
||||
telnetOutput(1, "Connection from: " + clientStringIP);
|
||||
|
||||
// read and loop thru list of IPs, compare with newIP
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
telnetOutput(2, "");
|
||||
}
|
||||
|
||||
InputStream telnetIS = null;
|
||||
try
|
||||
{
|
||||
@@ -153,11 +124,6 @@ public class GameStatusThread extends Thread
|
||||
|
||||
final String HostList = telnetSettings.getProperty("ListOfHosts", "127.0.0.1,localhost,::1");
|
||||
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
telnetOutput(3, "Comparing ip to list...");
|
||||
}
|
||||
|
||||
// compare
|
||||
String ipToCompare = null;
|
||||
for (String ip : HostList.split(","))
|
||||
@@ -169,19 +135,11 @@ public class GameStatusThread extends Thread
|
||||
{
|
||||
result = true;
|
||||
}
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
telnetOutput(3, clientStringIP + " = " + ipToCompare + "(" + ip + ") = " + result);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (IOException e)
|
||||
{
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
telnetOutput(4, "");
|
||||
}
|
||||
telnetOutput(1, "Error: " + e);
|
||||
}
|
||||
finally
|
||||
@@ -199,10 +157,6 @@ public class GameStatusThread extends Thread
|
||||
}
|
||||
}
|
||||
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
telnetOutput(4, "Allow IP: " + result);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
@@ -676,10 +630,6 @@ public class GameStatusThread extends Thread
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
if (Config.DEBUG)
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (_usrCommand.startsWith("unjail"))
|
||||
@@ -706,10 +656,6 @@ public class GameStatusThread extends Thread
|
||||
}
|
||||
catch (Exception e)
|
||||
{
|
||||
if (Config.DEBUG)
|
||||
{
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (_usrCommand.startsWith("debug") && (_usrCommand.length() > 6))
|
||||
@@ -999,10 +945,6 @@ public class GameStatusThread extends Thread
|
||||
catch (SQLException se)
|
||||
{
|
||||
_print.println("SQLException while jailing player");
|
||||
if (Config.DEBUG)
|
||||
{
|
||||
se.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1034,10 +976,6 @@ public class GameStatusThread extends Thread
|
||||
catch (SQLException se)
|
||||
{
|
||||
_print.println("SQLException while jailing player");
|
||||
if (Config.DEBUG)
|
||||
{
|
||||
se.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -30,8 +30,8 @@ import java.util.logging.Logger;
|
||||
|
||||
import com.l2jmobius.Config;
|
||||
import com.l2jmobius.loginserver.GameServerTable;
|
||||
import com.l2jmobius.loginserver.LoginServer;
|
||||
import com.l2jmobius.loginserver.LoginController;
|
||||
import com.l2jmobius.loginserver.LoginServer;
|
||||
|
||||
public class LoginStatusThread extends Thread
|
||||
{
|
||||
@@ -79,11 +79,6 @@ public class LoginStatusThread extends Thread
|
||||
telnetOutput(1, "Connection from: " + clientStringIP);
|
||||
|
||||
// read and loop thru list of IPs, compare with newIP
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
telnetOutput(2, "");
|
||||
}
|
||||
|
||||
InputStream telnetIS = null;
|
||||
try
|
||||
{
|
||||
@@ -93,11 +88,6 @@ public class LoginStatusThread extends Thread
|
||||
|
||||
final String HostList = telnetSettings.getProperty("ListOfHosts", "127.0.0.1,localhost,::1");
|
||||
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
telnetOutput(3, "Comparing ip to list...");
|
||||
}
|
||||
|
||||
// compare
|
||||
String ipToCompare = null;
|
||||
for (String ip : HostList.split(","))
|
||||
@@ -109,19 +99,11 @@ public class LoginStatusThread extends Thread
|
||||
{
|
||||
result = true;
|
||||
}
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
telnetOutput(3, clientStringIP + " = " + ipToCompare + "(" + ip + ") = " + result);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (IOException e)
|
||||
{
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
telnetOutput(4, "");
|
||||
}
|
||||
telnetOutput(1, "Error: " + e);
|
||||
}
|
||||
finally
|
||||
@@ -139,10 +121,6 @@ public class LoginStatusThread extends Thread
|
||||
}
|
||||
}
|
||||
|
||||
if (Config.DEVELOPER)
|
||||
{
|
||||
telnetOutput(4, "Allow IP: " + result);
|
||||
}
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user