Fixing resource leak
To check for existence, switching from getResourceAsStream to getResource
This commit is contained in:
parent
42a3e01086
commit
022257ee55
|
@ -350,7 +350,6 @@ public class Agent {
|
||||||
// nothing to do with JDK but this should be safe because only thing this does is to delay
|
// nothing to do with JDK but this should be safe because only thing this does is to delay
|
||||||
// tracer install
|
// tracer install
|
||||||
final String jfrClassResourceName = "jdk.jfr.Recording".replace('.', '/') + ".class";
|
final String jfrClassResourceName = "jdk.jfr.Recording".replace('.', '/') + ".class";
|
||||||
return Thread.currentThread().getContextClassLoader().getResourceAsStream(jfrClassResourceName)
|
return Thread.currentThread().getContextClassLoader().getResource(jfrClassResourceName) != null;
|
||||||
!= null;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue