Skip to content

Commit

Permalink
process command line args regardless of whether or not we're able to …
Browse files Browse the repository at this point in the history
…read the model from disk
  • Loading branch information
myleshorton committed Nov 6, 2013
1 parent 1f0fbd0 commit 52ba499
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/java/org/lantern/state/ModelIo.java
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,8 @@ private void loadLocalPasswordFile(final String pwFilename) {
@Override
protected Model blank() {
log.info("Loading empty model!!");
Model mod = new Model(countryService);
final Model mod = new Model(countryService);
processCommandLine(this.commandLine, mod);
return mod;
}

Expand Down

0 comments on commit 52ba499

Please sign in to comment.