Project cleanup pre merge.

This commit is contained in:
2023-07-15 09:23:48 -04:00
parent 134b651df8
commit 9bbdef224d
747 changed files with 99704 additions and 101200 deletions
+10 -10
View File
@@ -7,22 +7,22 @@
// www.magicbane.com
package engine.jobs;
package engine.jobs;
import engine.gameManager.SessionManager;
import engine.job.AbstractJob;
public class CSessionCleanupJob extends AbstractJob {
private final String secKey;
private final String secKey;
public CSessionCleanupJob(String key) {
super();
this.secKey = key;
}
public CSessionCleanupJob(String key) {
super();
this.secKey = key;
}
@Override
protected void doJob() {
SessionManager.cSessionCleanup(secKey);
}
@Override
protected void doJob() {
SessionManager.cSessionCleanup(secKey);
}
}