Remove @override annotation from interface implementation to make it

compile and usable with java5. This part of the backport of pull request
#75
This commit is contained in:
norman 2011-11-23 15:09:50 +01:00
parent 9424c26caf
commit e6ef89263b

View File

@ -12,7 +12,10 @@ class CachingClassResolver implements ClassResolver {
this.classCache = classCache;
}
@Override
/*
* (non-Javadoc)
* @see org.jboss.netty.handler.codec.serialization.ClassResolver#resolve(java.lang.String)
*/
public Class<?> resolve(String className) throws ClassNotFoundException {
// Query the cache first.
Class<?> clazz;