Remove unnecessary warning suppression

Change-Id: Iac493ad8be46d29e82ffb3007aadf25a49debfa8
This commit is contained in:
Nasser Grainawi
2011-05-18 19:54:22 -07:00
committed by Shawn O. Pearce
parent 982e5972cb
commit 3755e9fd85
13 changed files with 0 additions and 25 deletions

View File

@@ -105,7 +105,6 @@ final class ProxyEhcache implements Ehcache {
return self().get(key);
}
@SuppressWarnings("unchecked")
public Map getAllWithLoader(Collection keys, Object loaderArgument)
throws CacheException {
return self().getAllWithLoader(keys, loaderArgument);
@@ -151,17 +150,14 @@ final class ProxyEhcache implements Ehcache {
return self().getGuid();
}
@SuppressWarnings("unchecked")
public List getKeys() throws IllegalStateException, CacheException {
return self().getKeys();
}
@SuppressWarnings("unchecked")
public List getKeysNoDuplicateCheck() throws IllegalStateException {
return self().getKeysNoDuplicateCheck();
}
@SuppressWarnings("unchecked")
public List getKeysWithExpiryCheck() throws IllegalStateException,
CacheException {
return self().getKeysWithExpiryCheck();
@@ -251,7 +247,6 @@ final class ProxyEhcache implements Ehcache {
self().load(key);
}
@SuppressWarnings("unchecked")
public void loadAll(Collection keys, Object argument) throws CacheException {
self().loadAll(keys, argument);
}