Skip to content

Commit

Permalink
indentation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
bchristi-git committed Nov 20, 2024
1 parent a532f8a commit cddc4e2
Showing 1 changed file with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -123,10 +123,10 @@ private static void setupUserRoot() {
" on userRoot directory. ");
}
getLogger().info("Created user preferences directory.");
}
else
} else {
getLogger().warning("Couldn't create user preferences" +
" directory. User preferences are unusable.");
" directory. User preferences are unusable.");
}
}
isUserRootWritable = userRootDir.canWrite();
String USER_NAME = System.getProperty("user.name");
Expand Down Expand Up @@ -583,8 +583,8 @@ private void loadCache() throws BackingStoreException {
"IncorrectFormatPrefs.xml"));
m = new TreeMap<>();
} else if (e instanceof FileNotFoundException) {
getLogger().warning("Prefs file removed in background "
+ prefsFile.getPath());
getLogger().warning("Prefs file removed in background "
+ prefsFile.getPath());
} else {
throw new BackingStoreException(e);
}
Expand Down

0 comments on commit cddc4e2

Please sign in to comment.