mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2025-06-12 04:23:54 +00:00
refactor: Tackle a few Semgrep and ErrorProne violations (#1520)
* refactor: Tackle a few Semgrep and ErrorProne violations * Address comments
This commit is contained in:
@ -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;
|
||||
|
||||
}
|
||||
|
Reference in New Issue
Block a user