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

allow to remove element

parent 0c049f2c
No related branches found
No related tags found
1 merge request!186Resolve "upload of sbml"
......@@ -66,7 +66,6 @@ public class SbmlKinetics implements Serializable {
private String definition;
public SbmlKinetics(SbmlKinetics original) {
logger.debug(original.getDefinition());
this.definition = original.getDefinition();
for (SbmlArgument argument : original.getArguments()) {
addArgument(argument.copy());
......@@ -160,4 +159,8 @@ public class SbmlKinetics implements Serializable {
return new SbmlKinetics(this);
}
public void removeElement(Element elementToRemove) {
elements.remove(elementToRemove);
}
}
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