Skip to content
Snippets Groups Projects
Commit 2dcb3324 authored by Simon Barner's avatar Simon Barner
Browse files

- Bug fix: getAnnotationClazz() -> Return class of underlying EClass's instance type

refs 1841
parent b3c69067
No related branches found
No related tags found
No related merge requests found
......@@ -255,7 +255,7 @@ public abstract class ValueProviderBase<T extends IAnnotatedSpecification> imple
@SuppressWarnings("unchecked")
@Override
public Class<T> getAnnotationClazz() {
return (Class<T>)annotatedSpecificationEClass.getClass();
return (Class<T>)annotatedSpecificationEClass.getInstanceClass();
}
/** {@inheritDoc} */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment