Skip to content

Commit

Permalink
Tests for inheritance of lifecycle callbacks
Browse files Browse the repository at this point in the history
git-svn-id: http://anonsvn.jboss.org/repos/weld/ri/trunk@1088 1c488680-804c-0410-94cd-c6b725194a0e
  • Loading branch information
pmuir committed Jan 19, 2009
1 parent a283e5c commit f3f27a5
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -328,7 +328,7 @@ private AnnotatedClassImpl(Class<T> rawType, Type type, Annotation[] annotations
this.methodsByAnnotatedParameters = new AnnotatedMethodMap();
for (Class<?> c = clazz; c != Object.class && c != null; c = c.getSuperclass())
{
for (Method method : clazz.getDeclaredMethods())
for (Method method : c.getDeclaredMethods())
{
if (!method.isAccessible())
{
Expand Down

0 comments on commit f3f27a5

Please sign in to comment.