Files
VisualSapfor/src/Common/Passes/Server/TestingSystemPass.java

14 lines
357 B
Java
Raw Normal View History

package Common.Passes.Server;
import Common.Global;
import Repository.TestingSystem.Common.TestingServer;
public abstract class TestingSystemPass<T> extends RepositoryPass<TestingServer, T> {
public TestingSystemPass() {
super(Global.testingServer);
}
@Override
protected int getTimeout() {
return 120000;
}
//----
}