Skip to content

Commit

Permalink
#17 - Invoke truststore.populate outside of the surrounding if
Browse files Browse the repository at this point in the history
  • Loading branch information
RomanKisilenko committed Jan 17, 2015
1 parent fbcb933 commit a4a16fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/jcabi/ssl/maven/plugin/KeygenMojo.java
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ public void execute() throws MojoFailureException {
store.activate(this.keystore);
truststore.imprt();
}
} catch (IOException ex) {
} catch (final IOException ex) {
throw new IllegalStateException(ex);
}
store.populate(this.project.getProperties());
Expand Down

0 comments on commit a4a16fa

Please sign in to comment.