Replaced qualified names with simple names.

This commit is contained in:
MobiusDev
2018-06-19 03:23:43 +00:00
parent a5b69096dd
commit e7606fb5ec
341 changed files with 1119 additions and 1137 deletions

View File

@@ -164,7 +164,7 @@ public abstract class BaseGameServerRegister
{
if (!GameServerTable.getInstance().hasRegisteredGameServerOnId(e.getKey()))
{
BaseGameServerRegister.registerGameServer(e.getKey(), outDir);
registerGameServer(e.getKey(), outDir);
return e.getKey();
}
}
@@ -228,7 +228,7 @@ public abstract class BaseGameServerRegister
{
try
{
BaseGameServerRegister.unregisterAllGameServers();
unregisterAllGameServers();
}
catch (SQLException e)
{