Remove unused parameter

This commit is contained in:
Andrew Steinborn
2020-07-12 11:57:07 -04:00
parent 21bc050f9c
commit f841d7590a

View File

@@ -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;
} }