Skip to content

Commit ac1ae8a

Browse files
committed
spotless
1 parent d469892 commit ac1ae8a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

instrumentation/internal/internal-class-loader/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/internal/classloader/BootDelegationInstrumentation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ public ElementMatcher<TypeDescription> typeMatcher() {
4848
// just an optimization to exclude common class loaders that are known to delegate to the
4949
// bootstrap loader (or happen to _be_ the bootstrap loader)
5050
// The AgentClassLoader and InstrumentationModuleClassloaders are required to be excluded
51-
// for the instrumentation to work properly. loadClass on those is invoked during Advice bootstrapping
51+
// for the instrumentation to work properly. loadClass on those is invoked during Advice
52+
// bootstrapping
5253
// which therefore would cause an infinite recursion
5354
return not(namedOneOf(
5455
"java.lang.ClassLoader",

0 commit comments

Comments
 (0)