Skip to content

Commit 4aed4e9

Browse files
committed
spotless
1 parent 128ee46 commit 4aed4e9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

javaagent-bootstrap/src/main/java/io/opentelemetry/javaagent/bootstrap/AgentClassLoader.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,8 @@ public PlatformDelegatingClassLoader() {
486486
@Override
487487
protected Class<?> loadClass(String name, boolean resolve) throws ClassNotFoundException {
488488
// prometheus exporter uses jdk http server, load it from the platform class loader
489-
// some custom extensions use java.* classes which are not in the boot loader such as java.sql.* and java.net.http.*
489+
// some custom extensions use java.* classes which are not in the boot loader such as
490+
// java.sql.* and java.net.http.*
490491
if (name != null
491492
&& (name.startsWith("com.sun.net.httpserver.") || name.startsWith("java."))) {
492493
return platformClassLoader.loadClass(name);

0 commit comments

Comments
 (0)