Skip to content

Commit

Permalink
[NAE-1884] Improve execution of auto trigger tasks
Browse files Browse the repository at this point in the history
- fix merge
  • Loading branch information
machacjozef committed Feb 14, 2024
1 parent 3325302 commit b392fa8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -422,9 +422,9 @@ public PetriNet clone() {
clone.setCreationDate(this.creationDate);
clone.setVersion(this.version == null ? null : this.version.clone());
clone.setAuthor(this.author == null ? null : this.author.clone());
clone.setTransitions(this.transitions == null ? null : this.transitions.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, e -> e.getValue().clone())));
clone.setRoles(this.roles == null ? null : this.roles.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, e -> e.getValue().clone())));
clone.setTransactions(this.transactions == null ? null : this.transactions.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, e -> e.getValue().clone())));
clone.setTransitions(this.transitions == null ? null : this.transitions.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, e -> e.getValue().clone(), (v1, v2) -> v1, LinkedHashMap::new)));
clone.setRoles(this.roles == null ? null : this.roles.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, e -> e.getValue().clone(), (v1, v2) -> v1, LinkedHashMap::new)));
clone.setTransactions(this.transactions == null ? null : this.transactions.entrySet().stream().collect(Collectors.toMap(Map.Entry::getKey, e -> e.getValue().clone(), (v1, v2) -> v1, LinkedHashMap::new)));
clone.setImportXmlPath(this.importXmlPath);
clone.setImportId(this.importId);
clone.setObjectId(this._id);
Expand Down

0 comments on commit b392fa8

Please sign in to comment.