Closed GoogleCodeExporter closed 8 years ago
Deleting appState.properties allowed me to restart.
I removed or commented out the "KEYWORD" entry and could load up the modfiles
successfully, so I think something is bugged there.
Original comment by johnnyl...@gmail.com
on 24 Dec 2013 at 1:55
Found defect in the lazy instantiation of the ModTree.keywords list:
was:
// lazily instantiate keywords only if any are present
if(this.keywords.isEmpty()) {
this.keywords = new ArrayList<>();
}
should be:
// lazily instantiate keywords only if any are present
if(this.keywords == null) {
this.keywords = new ArrayList<>();
}
Corrected and will be in next version. Current workaround is to not use or
comment out KEYWORD= lines.
Original comment by miss.inv...@gmail.com
on 24 Dec 2013 at 4:28
Original issue reported on code.google.com by
johnnyl...@gmail.com
on 24 Dec 2013 at 1:49