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 2302b30 commit 562351f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -549,7 +549,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 562351f

Please sign in to comment.