332796 - Annotations inheritance does not work with jetty7

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2612 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Jan Bartel 2010-12-17 11:50:16 +00:00
parent 246cde364b
commit b4edc055a1
2 changed files with 2 additions and 1 deletions

View File

@ -3,6 +3,7 @@ jetty-7.2.3-SNAPSHOT
+ 332432 Scanner.java now always scanning the canonical form of File
+ 332179 Fixed formatting of negative dates
+ 332703 Cleanup context scope JNDI at stop
+ 332796 Annotations inheritance does not work with jetty7
jetty-7.2.2.v20101205 5 December 2010
+ JETTY-1308 327109 (re)fixed AJP handling of empty packets

View File

@ -65,7 +65,7 @@ public class AnnotationIntrospector
//process the whole inheritance hierarchy for the class
while (c!=null && (!c.equals(Object.class)))
{
doHandle(clazz);
doHandle(c);
if (!_introspectAncestors)
break;