Skip to content

Commit

Permalink
🚨 fix linter warning
Browse files Browse the repository at this point in the history
  • Loading branch information
McPringle committed Mar 31, 2024
1 parent e772496 commit 0e52fcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/swiss/fihlon/apus/conference/Room.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

public record Room(@NotNull String name) implements Comparable<Room> {
@Override
public int compareTo(@NotNull Room other) {
public int compareTo(@NotNull final Room other) {
return name.compareTo(other.name);
}
}

0 comments on commit 0e52fcb

Please sign in to comment.