Remove unnecessary suppression of "unchecked"

Eclipse reports a warning that this suppression is not necessary.

This reverts commit 01675359e0.

Change-Id: I54f4b30c68ddeba96a0dd2206d5e08cc881547f6
This commit is contained in:
David Pursehouse
2013-10-11 10:58:57 +09:00
parent 868ae37127
commit 3670fce262

View File

@@ -52,7 +52,6 @@ public class ForwardingRemovalListener<K, V> implements RemovalListener<K, V> {
}
}
@SuppressWarnings("unchecked")
public void onRemoval(RemovalNotification<K, V> notification) {
for (CacheRemovalListener<K, V> l : listeners) {
l.onRemoval(pluginName, cacheName, notification);