mirror of https://github.com/apache/lucene.git
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:
parent
15bbb3fd0b
commit
cf0c29a018
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue