Skip to content

Commit

Permalink
Include 'jdk.reflect' package in default ignore matcher.
Browse files Browse the repository at this point in the history
  • Loading branch information
raphw committed Jul 19, 2021
1 parent b2ae24f commit d67c7f3
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -9220,7 +9220,7 @@ public Default(ByteBuddy byteBuddy) {
new RawMatcher.ForElementMatchers(any(), isBootstrapClassLoader().or(isExtensionClassLoader())),
new RawMatcher.ForElementMatchers(nameStartsWith("net.bytebuddy.")
.and(not(ElementMatchers.nameStartsWith(NamingStrategy.SuffixingRandom.BYTE_BUDDY_RENAME_PACKAGE + ".")))
.or(nameStartsWith("sun.reflect."))
.or(nameStartsWith("sun.reflect.").or(nameStartsWith("jdk.reflect.")))
.<TypeDescription>or(isSynthetic()))),
Collections.<Transformation>emptyList());
}
Expand Down

0 comments on commit d67c7f3

Please sign in to comment.