Skip to content
Snippets Groups Projects
Commit 2e358315 authored by Piotr Gawron's avatar Piotr Gawron
Browse files

copying kinetics shouldn't copy elements

parent 1a11a841
No related branches found
No related tags found
1 merge request!186Resolve "upload of sbml"
...@@ -83,7 +83,7 @@ public class SbmlKinetics implements Serializable { ...@@ -83,7 +83,7 @@ public class SbmlKinetics implements Serializable {
public SbmlKinetics(SbmlKinetics original) { public SbmlKinetics(SbmlKinetics original) {
this.definition = original.getDefinition(); this.definition = original.getDefinition();
for (SbmlArgument argument : original.getArguments()) { for (SbmlArgument argument : original.getArguments()) {
addArgument(argument.copy()); addArgument(argument);
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment