refactor: Tackle a few Semgrep and ErrorProne violations (#1520)

* refactor: Tackle a few Semgrep and ErrorProne violations

* Address comments
This commit is contained in:
Alex
2022-01-07 12:45:53 +01:00
committed by GitHub
parent f27959e49a
commit 64442a8051
22 changed files with 55 additions and 400 deletions

View File

@ -9,12 +9,13 @@ import it.unimi.dsi.fastutil.longs.LongSet;
/**
* Class to prevent the above/below being removed from shaded/relocated dependencies via minimization
*/
@SuppressWarnings("unused")
final class DoNotMiniseThese {
private final Long2ObjectLinkedOpenHashMap a = null;
private final Long2ObjectLinkedOpenHashMap<?> a = null;
private final LongArraySet b = null;
private final LongIterator c = null;
private final LongSet d = null;
private final Int2ObjectMap e = null;
private final Int2ObjectMap<?> e = null;
}