Skip to content

Commit 8b2c13e

Browse files
committed
Removed command system and scheduler
1 parent 21a3dfd commit 8b2c13e

File tree

2 files changed

+0
-6
lines changed

2 files changed

+0
-6
lines changed

src/main/java/org/javawebstack/framework/module/Module.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package org.javawebstack.framework.module;
22

3-
import org.javawebstack.command.CommandSystem;
43
import org.javawebstack.framework.WebApplication;
54
import org.javawebstack.framework.config.Config;
65
import org.javawebstack.httpserver.HTTPServer;

src/main/java/org/javawebstack/framework/testing/WebFrameworkTest.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
package org.javawebstack.framework.testing;
22

3-
import org.javawebstack.command.CommandResult;
43
import org.javawebstack.framework.WebApplication;
54
import org.javawebstack.framework.config.Config;
65
import org.javawebstack.httpserver.test.HTTPTest;
@@ -29,10 +28,6 @@ public void seed(String name){
2928
webApplication.getSeeder(name).seed();
3029
}
3130

32-
public CommandResult runCommand(String... input){
33-
return webApplication.getCommandSystem().eval(input);
34-
}
35-
3631
public Config getConfig(){
3732
return webApplication.getConfig();
3833
}

0 commit comments

Comments
 (0)