ArrayAsKeyOfSetOrMap
Arrays do not override equals() or hashCode, so comparisons will be done on reference equality only. If neither deduplication nor lookup are needed, consider using a List instead. Otherwise, use IdentityHashMap/Set, a Map from a library that handles object arrays, or an Iterable/List of pairs.

Severity
WARNING

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("ArrayAsKeyOfSetOrMap") to the enclosing element.