Dropped Classic support.

This commit is contained in:
MobiusDev
2015-10-23 23:44:21 +00:00
parent d49a007f9d
commit 39f05439c3
7958 changed files with 58 additions and 782473 deletions

View File

@@ -32,15 +32,13 @@ import com.l2jserver.tools.dbinstaller.util.mysql.ScriptExecutor;
public class RunTasks extends Thread
{
DBOutputInterface _frame;
boolean _classicInstall;
String _db;
String _sqlDir;
public RunTasks(DBOutputInterface frame, String db, String sqlDir, boolean classicInstall)
public RunTasks(DBOutputInterface frame, String db, String sqlDir)
{
_frame = frame;
_db = db;
_classicInstall = classicInstall;
_sqlDir = sqlDir;
}
@@ -53,16 +51,6 @@ public class RunTasks extends Thread
_frame.appendToProgressArea("Installing Database Content...");
exec.execSqlBatch(new File(_sqlDir));
if (_classicInstall)
{
File cusDir = new File(_sqlDir, "classic");
if (cusDir.exists())
{
_frame.appendToProgressArea("Installing Classic Tables...");
exec.execSqlBatch(cusDir);
}
}
_frame.appendToProgressArea("Database Installation Complete!");
try