Skip to content
Snippets Groups Projects
Commit f09c4bb2 authored by Christopher Schankula's avatar Christopher Schankula :earth_africa:
Browse files

default count is 0.

parent 78dc3d9a
No related branches found
No related tags found
No related merge requests found
......@@ -19,7 +19,7 @@ public class TaxonNode {
this.name = name;
this.parent = null;
this.children = null;
this.count = 1;
this.count = 0;
}
public int getTaxonId() {
......
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