From 3d571c329adf03f9446945ca91eb6d2c67e32241 Mon Sep 17 00:00:00 2001 From: Lauri Tulmin Date: Thu, 2 Feb 2023 16:22:02 +0200 Subject: [PATCH] Reformat comment (#7713) --- .../tooling/ignore/IgnoredClassLoadersMatcher.java | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/ignore/IgnoredClassLoadersMatcher.java b/javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/ignore/IgnoredClassLoadersMatcher.java index 1b125fe3dbc9..49f4a538b819 100644 --- a/javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/ignore/IgnoredClassLoadersMatcher.java +++ b/javaagent-tooling/src/main/java/io/opentelemetry/javaagent/tooling/ignore/IgnoredClassLoadersMatcher.java @@ -46,18 +46,14 @@ public boolean matches(ClassLoader cl) { cl, c -> { // when ClassloadingInstrumentation is active, checking delegatesToBootstrap() below is - // not - // required, because ClassloadingInstrumentation forces all class loaders to load all of - // the - // classes in Constants.BOOTSTRAP_PACKAGE_PREFIXES directly from the bootstrap class + // not required, because ClassloadingInstrumentation forces all class loaders to load all + // the classes in Constants.BOOTSTRAP_PACKAGE_PREFIXES directly from the bootstrap class // loader // // however, at this time we don't want to introduce the concept of a required - // instrumentation, - // and we don't want to introduce the concept of the tooling code depending on whether or - // not - // a particular instrumentation is active (mainly because this particular use case doesn't - // seem to justify introducing either of these new concepts) + // instrumentation, and we don't want to introduce the concept of the tooling code + // depending on whether a particular instrumentation is active (mainly because this + // particular use case doesn't seem to justify introducing either of these new concepts) return !delegatesToBootstrap(cl); }); }