Skip to content

Commit

Permalink
🚨 fix checkstyle warning #64
Browse files Browse the repository at this point in the history
  • Loading branch information
McPringle committed Apr 1, 2024
1 parent 13cd181 commit a7e3dbc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/swiss/fihlon/apus/service/SocialService.java
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ public void hideMessage(@NotNull final Message message) {
}

private Path getHiddenMessagesFilePath() {
final Path configDir = Path.of(System.getProperty("user.home"),".apus");
final Path configDir = Path.of(System.getProperty("user.home"), ".apus");
if (!configDir.toFile().exists()) {
try {
Files.createDirectories(configDir);
Expand Down

0 comments on commit a7e3dbc

Please sign in to comment.