This commit is contained in:
2024-03-24 18:08:23 +03:00
parent aaddd55152
commit fe03fd6b47
2 changed files with 1 additions and 6 deletions

6
.idea/workspace.xml generated
View File

@@ -6,11 +6,7 @@
</artifacts-to-build> </artifacts-to-build>
</component> </component>
<component name="ChangeListManager"> <component name="ChangeListManager">
<list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment=""> <list default="true" id="e42177c3-2328-4b27-8a01-35779b2beb99" name="Default Changelist" comment="" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/properties" beforeDir="false" afterPath="$PROJECT_DIR$/properties" afterDir="false" />
<change beforePath="$PROJECT_DIR$/src/Visual_DVM_2021/Passes/All/CloneSapforPackage.java" beforeDir="false" afterPath="$PROJECT_DIR$/src/Visual_DVM_2021/Passes/All/CloneSapforPackage.java" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" /> <option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" /> <option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" /> <option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />

View File

@@ -160,7 +160,6 @@ public class CloneSapforPackage extends AddObjectPass<SapforPackage> {
} }
for (SapforTask task : target.package_json.tasks) { for (SapforTask task : target.package_json.tasks) {
task.id = target.package_json.getMaxTaskId(); task.id = target.package_json.getMaxTaskId();
target.package_json.tasks.add(task);
} }
target.tasksCount = target.package_json.tasks.size(); target.tasksCount = target.package_json.tasks.size();
target.testsNames = String.join(";", target.package_json.getTestsNames()); target.testsNames = String.join(";", target.package_json.getTestsNames());