no message
This commit is contained in:
@@ -29,7 +29,7 @@ public class AbortSapforTaskPackage extends TestingSystemPass<SapforTasksPackage
|
||||
break;
|
||||
default:
|
||||
TasksPackageToKill tasksPackageToKill = new TasksPackageToKill();
|
||||
tasksPackageToKill.packageName = target.id;
|
||||
tasksPackageToKill.packageName = String.valueOf(target.id);
|
||||
packagesToKill.add(tasksPackageToKill);
|
||||
return true;
|
||||
}
|
||||
|
||||
@@ -42,7 +42,7 @@ public class DownloadSapforTasksPackage extends TestingSystemPass<SapforTasksPac
|
||||
@Override
|
||||
protected void ServerAction() throws Exception {
|
||||
Command(new ServerExchangeUnit_2021(ServerCode.DownloadSapforTasksPackage, Current.getAccount().email, target.id));
|
||||
response.Unpack(tmpArchive = Utils.getTempFileName(target.id));
|
||||
response.Unpack(tmpArchive = Utils.getTempFileName(String.valueOf(target.id)));
|
||||
}
|
||||
@Override
|
||||
protected boolean validate() {
|
||||
|
||||
@@ -201,7 +201,7 @@ public class StartSapforTests extends TestingSystemPass<SapforTasksPackage> {
|
||||
@Override
|
||||
protected void ServerAction() throws Exception {
|
||||
target = new SapforTasksPackage();
|
||||
target.genName();
|
||||
//target.genName();
|
||||
//--
|
||||
Vector<String> testsIds = new Vector<>();
|
||||
Vector<String> configurationsIds = new Vector<>();
|
||||
|
||||
@@ -26,7 +26,7 @@ public class SapforPackageFields implements DialogFields, FormWithSplitters {
|
||||
LoadSplitters();
|
||||
object = object_in;
|
||||
//--
|
||||
lObjectName.setText(object.id);
|
||||
lObjectName.setText(String.valueOf(object.id));
|
||||
/*
|
||||
treePanel.add(
|
||||
new JScrollPane(
|
||||
|
||||
@@ -20,7 +20,7 @@ public class SapforPackageForm extends Dialog<SapforTasksPackage, SapforPackageF
|
||||
@Override
|
||||
public void Init(Object... params) {
|
||||
sapforTasksPackage = (SapforTasksPackage) params[0];
|
||||
fields.lObjectName.setText(sapforTasksPackage.id);
|
||||
// fields.lObjectName.setText(sapforTasksPackage.id);
|
||||
/*
|
||||
fields.getTreePanel().add(
|
||||
new JScrollPane(
|
||||
|
||||
Reference in New Issue
Block a user