Skip to content

Commit

Permalink
[agent.java] issue '#809' 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
gunlee01 committed Sep 6, 2021
1 parent 3d80606 commit 72535b3
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,9 @@ private ClassReader typeInfo(final String type) throws IOException {
is = ClassLoader.getSystemResourceAsStream(type + ".class");
} else {
is = loader.getResourceAsStream(type + ".class");
if(is == null){
is = ClassLoader.getSystemResourceAsStream(type + ".class");
}
}
if (is == null) {
return null;
Expand All @@ -188,4 +191,4 @@ private ClassReader typeInfo(final String type) throws IOException {
}
}

}
}

0 comments on commit 72535b3

Please sign in to comment.