no message
This commit is contained in:
@@ -1,20 +1,10 @@
|
||||
package Visual_DVM_2021.Passes.All;
|
||||
import Common.Current;
|
||||
import Common.Global;
|
||||
import TestingSystem.Common.TestingServer;
|
||||
import TestingSystem.SAPFOR.SapforConfiguration.SapforConfiguration;
|
||||
import Visual_DVM_2021.Passes.DeleteSelectedServerObjects;
|
||||
|
||||
import java.util.Vector;
|
||||
public class DeleteSapforConfiguration extends DeleteSelectedServerObjects {
|
||||
import Visual_DVM_2021.Passes.Server.DeleteServerObject;
|
||||
public class DeleteSapforConfiguration extends DeleteServerObject<TestingServer, SapforConfiguration> {
|
||||
public DeleteSapforConfiguration() {
|
||||
super(SapforConfiguration.class);
|
||||
}
|
||||
@Override
|
||||
protected boolean canStart(Object... args) throws Exception {
|
||||
if (Current.Check(Log, Current.SapforConfiguration)){
|
||||
target= new Vector<>();
|
||||
target.add(Current.getSapforConfiguration());
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
super(Global.testingServer, SapforConfiguration.class);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user