We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 717af3e commit c2fbf8eCopy full SHA for c2fbf8e
deep/src/main/java/com/intergral/deep/DeepLoader.java
@@ -59,9 +59,11 @@ private File getToolsJar() {
59
* @return the {@link File} object for the agent
60
*/
61
private File getAgentJar(final String jarPath) {
62
- final File file = new File(jarPath);
63
- if (file.exists()) {
64
- return file;
+ if (jarPath != null) {
+ final File file = new File(jarPath);
+ if (file.exists()) {
65
+ return file;
66
+ }
67
}
68
final InputStream resourceAsStream = getAgentJarStream();
69
final String pathname = extractLibrary(resourceAsStream);
0 commit comments