Skip to content

Commit

Permalink
Merge pull request #1098 from Donnerbart/fix-ignore-matcher-for-jdk-r…
Browse files Browse the repository at this point in the history
…eflect

Fix package name of JDK reflection in default ignore matcher
  • Loading branch information
raphw committed Aug 18, 2021
2 parents 47af9aa + 780b870 commit 3c82e0d
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -9401,7 +9401,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("jdk.reflect.")))
.or(nameStartsWith("sun.reflect.").or(nameStartsWith("jdk.internal.reflect.")))
.<TypeDescription>or(isSynthetic()))),
Collections.<Transformation>emptyList());
}
Expand Down

0 comments on commit 3c82e0d

Please sign in to comment.