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 e4b973f commit 977962cCopy full SHA for 977962c
javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/ExtensionClassLoader.java
@@ -77,7 +77,7 @@ public static ClassLoader getInstance(
77
}
78
79
private static void includeEmbeddedExtensionsIfFound(List<URL> extensions, File javaagentFile) {
80
- try (JarFile jarFile = new JarFile(javaagentFile, false)) {
+ try (JarFile jarFile = new JarFile(javaagentFile, false)) {
81
Enumeration<JarEntry> entryEnumeration = jarFile.entries();
82
String prefix = "extensions/";
83
File tempDirectory = null;
0 commit comments