Skip to content

Commit

Permalink
Detect ajc markers in superclasses as well (for weaving check)
Browse files Browse the repository at this point in the history
Closes gh-33113

(cherry picked from commit 100da83)
  • Loading branch information
jhoeller committed Jul 3, 2024
1 parent 069d081 commit 09123de
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -545,7 +545,8 @@ private static boolean compiledByAjc(Class<?> clazz) {
return true;
}
}
return false;
Class<?> superclass = clazz.getSuperclass();
return (superclass != null && compiledByAjc(superclass));
}


Expand Down

0 comments on commit 09123de

Please sign in to comment.