Skip to content

Commit 85cc395

Browse files
committed
./gradlew spotlessApply
1 parent 63b2d8f commit 85cc395

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

instrumentation/jfinal-3.6/javaagent/src/main/java/io/opentelemetry/javaagent/instrumentation/jfinal/v3_6/ActionHandlerInstrumentation.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ public static AdviceScope onEnter() {
8080

8181
@Advice.OnMethodExit(onThrowable = Throwable.class, suppress = Throwable.class)
8282
public static void stopTraceOnResponse(
83-
@Advice.Thrown @Nullable Throwable throwable, @Advice.Enter @Nullable AdviceScope actionScope) {
83+
@Advice.Thrown @Nullable Throwable throwable,
84+
@Advice.Enter @Nullable AdviceScope actionScope) {
8485
if (actionScope != null) {
8586
actionScope.end(throwable);
8687
}

settings.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -693,7 +693,6 @@ include(":instrumentation:xxl-job:xxl-job-common:javaagent")
693693
include(":instrumentation:xxl-job:xxl-job-common:testing")
694694
include(":instrumentation:zio:zio-2.0:javaagent")
695695

696-
697696
// benchmark
698697
include(":benchmark-overhead-jmh")
699698
include(":benchmark-jfr-analyzer")

0 commit comments

Comments
 (0)