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

default values for onstant and boundaryCondition provided

parent 96ec0cfb
No related branches found
No related tags found
2 merge requests!630WIP: Resolve "The privileges of a new user are not saved in some cases",!591Resolve "SBML Reaction glyphs missing curve segment result in NullPointer exception"
......@@ -122,9 +122,9 @@ public abstract class Species extends Element {
@OneToMany(fetch = FetchType.EAGER, mappedBy = "species", orphanRemoval = true)
private Set<UniprotRecord> uniprots = new HashSet<>();
private Boolean boundaryCondition;
private Boolean boundaryCondition = false;
private Boolean constant;
private Boolean constant = false;
@Enumerated(EnumType.STRING)
private SbmlUnitType substanceUnits;
......
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