390560 The method AnnotationParser.getAnnotationHandlers(String) always returns a empty collection.
This commit is contained in:
parent
eacd75bbfd
commit
0ab5773963
|
@ -426,7 +426,7 @@ public class AnnotationParser
|
|||
List<DiscoverableAnnotationHandler> handlers = _annotationHandlers.get(annotationName);
|
||||
if (handlers == null)
|
||||
return Collections.emptyList();
|
||||
return new ArrayList<DiscoverableAnnotationHandler>();
|
||||
return new ArrayList<DiscoverableAnnotationHandler>(handlers);
|
||||
}
|
||||
|
||||
public List<DiscoverableAnnotationHandler> getAnnotationHandlers()
|
||||
|
|
Loading…
Reference in New Issue