Revert unintentional change in AnnotationUtils

This commit is contained in:
Sam Brannen 2015-04-23 17:27:58 +02:00
parent b723dcebba
commit ececf32c05
1 changed files with 4 additions and 3 deletions

View File

@ -364,11 +364,12 @@ public abstract class AnnotationUtils {
result = searchOnInterfaces(method, annotationType, clazz.getInterfaces());
}
}
if (result != null) {
findAnnotationCache.put(cacheKey, result);
}
}
if (result != null) {
findAnnotationCache.put(cacheKey, result);
}
return result;
}