11 lines
458 B
Java
11 lines
458 B
Java
|
|
package Visual_DVM_2021.Passes.All;
|
||
|
|
import Common.Global;
|
||
|
|
import TestingSystem.Common.TestingServer;
|
||
|
|
import TestingSystem.SAPFOR.SapforSettingsCommand.SapforSettingsCommand;
|
||
|
|
import Visual_DVM_2021.Passes.Server.DeleteServerObjects;
|
||
|
|
public class DeleteSapforSettingsCommand extends DeleteServerObjects<TestingServer, SapforSettingsCommand> {
|
||
|
|
public DeleteSapforSettingsCommand() {
|
||
|
|
super(Global.testingServer, SapforSettingsCommand.class);
|
||
|
|
}
|
||
|
|
}
|