package Visual_DVM_2021.Passes.All; import Common.Global; import Common.Utils.Utils; import TestingSystem.SAPFOR.SapforPackage.SapforPackage; import Visual_DVM_2021.Passes.DeleteTestingPackages; import java.io.File; public class DeleteSapforPackage extends DeleteTestingPackages { public DeleteSapforPackage() { super(SapforPackage.class); } @Override protected File getPackagesHome() { return Global.SapforPackagesDirectory; } }