Suppress rawtypes warning for createReferenceArray

This commit is contained in:
Juergen Hoeller 2018-07-09 14:28:15 +02:00
parent 6d6aa72e8f
commit fd0220b85c
1 changed files with 1 additions and 1 deletions

View File

@ -651,7 +651,7 @@ public class ConcurrentReferenceHashMap<K, V> extends AbstractMap<K, V> implemen
return null;
}
@SuppressWarnings("unchecked")
@SuppressWarnings({"rawtypes", "unchecked"})
private Reference<K, V>[] createReferenceArray(int size) {
return new Reference[size];
}