Skip to content

Commit

Permalink
bmatthews68#12 fixes a NPE
Browse files Browse the repository at this point in the history
  • Loading branch information
spyhunter99 committed Dec 11, 2019
1 parent 6cc570e commit 18dc540
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@ protected void execute() {
*/
private KeyPair getKeyPair() {

if (pemFile.exists()) {
if (pemFile!=null && pemFile.exists()) {
try {
final Reader pemFileReader = new FileReader(pemFile);
try {
Expand Down

0 comments on commit 18dc540

Please sign in to comment.