Skip to content

Commit

Permalink
Fix package name of JDK reflection in default ignore matcher
Browse files Browse the repository at this point in the history
  • Loading branch information
Donnerbart committed Aug 18, 2021
1 parent 47af9aa commit 780b870
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 780b870

Please sign in to comment.