Skip to content

Commit d28efde

Browse files
committed
spotless
1 parent 0fd0e09 commit d28efde

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

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

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
import java.util.List;
1616

1717
@AutoService(InstrumentationModule.class)
18-
public class ClassLoaderInstrumentationModule extends InstrumentationModule implements
19-
ExperimentalInstrumentationModule {
18+
public class ClassLoaderInstrumentationModule extends InstrumentationModule
19+
implements ExperimentalInstrumentationModule {
2020
public ClassLoaderInstrumentationModule() {
2121
super("internal-class-loader");
2222
}
@@ -27,7 +27,6 @@ public boolean defaultEnabled(ConfigProperties config) {
2727
return true;
2828
}
2929

30-
3130
@Override
3231
public boolean isHelperClass(String className) {
3332
// TODO: this can be removed when we drop inlined-advice support
@@ -55,7 +54,6 @@ public List<TypeInstrumentation> typeInstrumentations() {
5554
new BootDelegationInstrumentation(),
5655
new LoadInjectedClassInstrumentation(),
5756
new ResourceInjectionInstrumentation(),
58-
new DefineClassInstrumentation()
59-
);
57+
new DefineClassInstrumentation());
6058
}
6159
}

0 commit comments

Comments
 (0)