From 05254577d390ab7c6ab07bb97be10d24b3c9e7d1 Mon Sep 17 00:00:00 2001 From: Aaron Echavarria Date: Mon, 16 Sep 2024 10:26:17 -0600 Subject: [PATCH] fix codenarc issues --- .../org/boozallen/plugins/jte/util/FileSystemCacheKey.groovy | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/groovy/org/boozallen/plugins/jte/util/FileSystemCacheKey.groovy b/src/main/groovy/org/boozallen/plugins/jte/util/FileSystemCacheKey.groovy index 3c001ca2..320d0e39 100644 --- a/src/main/groovy/org/boozallen/plugins/jte/util/FileSystemCacheKey.groovy +++ b/src/main/groovy/org/boozallen/plugins/jte/util/FileSystemCacheKey.groovy @@ -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 }