Fix "FindBugs" warning.

This commit is contained in:
Gilles Sadowski 2020-03-22 14:21:59 +01:00
parent 103276c53b
commit 60a8f03baf
1 changed files with 7 additions and 0 deletions

View File

@ -344,4 +344,11 @@ public class FieldDenseMatrix<T>
return r;
}
/** {@inheritDoc} */
@Override
public int hashCode() {
assert false : "hashCode not designed";
return 42; // Any arbitrary constant will do.
}
}