Skip to content

Commit

Permalink
Fix code smell
Browse files Browse the repository at this point in the history
  • Loading branch information
RetGal committed Nov 3, 2023
1 parent 85abe12 commit 7d243f7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/mpo/dayon/common/Runner.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ static File getOrCreateAppHomeDir() {
static void prepareKeystore(File appHomeDir) {
if (appHomeDir == null) {
Log.error("Skipping keystore creation, application directory is missing!");
return;
}
Path keystore = Paths.get(format("%s%skeystore.jks", appHomeDir.getAbsolutePath(), File.separator));
if (!Files.exists(keystore)) {
Expand Down

0 comments on commit 7d243f7

Please sign in to comment.