Supress unchecked warning

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1709249 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2015-10-18 10:03:52 +00:00
parent 15bbb3fd0b
commit cf0c29a018
1 changed files with 1 additions and 0 deletions

View File

@ -87,6 +87,7 @@ final class Multiset<T> extends AbstractCollection<T> {
} }
@Override @Override
@SuppressWarnings("unchecked")
public boolean remove(Object o) { public boolean remove(Object o) {
final Integer count = map.get(o); final Integer count = map.get(o);
if (count == null) { if (count == null) {