return t.toString() + System.identityHashCode(m);
}
private CacheAttribute retrieve(Method m, Class t) {
Method specificMethod = AopUtils.getMostSpecificMethod(m, t);
CacheAttribute attribute = finder.find(specificMethod);
if (attribute != null) return attribute;
if (specificMethod != m) return finder.find(m);
return null;
}