Skip to content

Commit

Permalink
[#noissue] fix plugin-it agent classloader filter
Browse files Browse the repository at this point in the history
  • Loading branch information
jaehong-kim committed Nov 23, 2023
1 parent 7bf9481 commit e2b20db
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void setTransformIncludeList(List<String> transformIncludeList) {

@Override
public boolean isDelegated(String name) {
if(isTransformInclude(name)) {
if (isTransformInclude(name)) {
return false;
}

Expand All @@ -74,7 +74,7 @@ public Class<?> loadClassChildFirst(String name) throws ClassNotFoundException {
}

if (c == null) {
if (testClassLoader != null) {
if (testClassLoader != null && Boolean.FALSE == isPinpointPackage.test(name)) {
c = testClassLoader.loadClass(name, false);
}
}
Expand Down

0 comments on commit e2b20db

Please sign in to comment.