Skip to content

Commit

Permalink
Refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
hwupathum committed Oct 15, 2024
1 parent ac97a52 commit cca1bc9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -217,11 +217,11 @@ public boolean isPrivateKeyStore(byte[] content, String password, String type)
break;
}
}
} catch (Exception e) {
return isPrivateStore;
} catch (java.lang.Exception e) {
log.error("Error in checking private key store.", e);
throw e;
}
return isPrivateStore;
}

public KeyStoreData getKeystoreInfo(String keyStoreName) throws java.lang.Exception {
Expand Down

0 comments on commit cca1bc9

Please sign in to comment.