remove hardcoded hashcode

This commit is contained in:
Pearl Dsilva 2026-01-14 11:59:31 -05:00
parent 304a3eb4f6
commit f9ca9bef5f
1 changed files with 1 additions and 6 deletions

View File

@ -248,17 +248,12 @@ public class NexentaStorAppliance {
return response!= null && response.getResult() > 0;
}
@SuppressWarnings("unused")
@SuppressWarnings({"unused", "EqualsHashCode", "EqualsAndHashCode", "java:S2160", "errorprone"})
static final class LuParams {
@Override
public boolean equals(Object other) {
return other instanceof LuParams;
}
@Override
public int hashCode() {
return 1;
}
}
/**