Gerhard Petracek created OWB-1034:
-------------------------------------
Summary: re-visit BeanCacheKey#getQualifierHashCode
Key: OWB-1034
URL: https://issues.apache.org/jira/browse/OWB-1034
Project: OpenWebBeans
Issue Type: Task
Reporter: Gerhard Petracek
Assignee: Mark Struberg
Class annotationClass = getAnnotationClass(a.getClass());
isn't needed - instead
Class annotationClass = a.annotationType();
is enough.
furthermore
return getTypeHashCode(a.getClass());
always leads to the same result and should be
return getTypeHashCode(a.annotationType());
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)