13
0
geforkt von Mirrors/Velocity

Remove unused parameter

Dieser Commit ist enthalten in:
Andrew Steinborn 2020-07-12 11:57:07 -04:00
Ursprung 21bc050f9c
Commit f841d7590a

Datei anzeigen

@ -39,7 +39,7 @@ public class Enum2IntMap<E extends Enum<E>> {
return this; return this;
} }
public Builder<E> remove(E key, int value) { public Builder<E> remove(E key) {
this.populated.remove(key); this.populated.remove(key);
return this; return this;
} }