Skip to content

Commit

Permalink
fix codenarc issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Aaron Echavarria committed Sep 16, 2024
1 parent 16e54b6 commit 0525457
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,8 @@ class FileSystemCacheKey {
* @param o the object to be compared with this instance.
* @return {@code true} if the provided object is equal to this instance, {@code false} otherwise.
*/
boolean equals(o) {
@Override
boolean equals(Object o) {
if (this.is(o)) {
return true
}
Expand Down

0 comments on commit 0525457

Please sign in to comment.