Ignore cglib packaged with springboot

This commit is contained in:
Nikolay Martynov 2020-02-21 11:50:03 -05:00
parent 0c659770cc
commit 27842d8479
1 changed files with 2 additions and 1 deletions

View File

@ -40,7 +40,8 @@ class GlobalIgnoresMatcher<T extends TypeDescription>
|| name.startsWith("com.appdynamics.") || name.startsWith("com.appdynamics.")
|| name.startsWith("com.singularity.") || name.startsWith("com.singularity.")
|| name.startsWith("com.jinspired.") || name.startsWith("com.jinspired.")
|| name.startsWith("org.jinspired.")) { || name.startsWith("org.jinspired.")
|| name.startsWith("org.springframework.cglib.")) {
return true; return true;
} }