Skip to content

Commit 199ce90

Browse files
committed
Format code
1 parent cfb4d8e commit 199ce90

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sentry-opentelemetry/sentry-opentelemetry-core/src/main/java/io/sentry/opentelemetry/SpanDescriptionExtractor.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,11 @@
99
import io.opentelemetry.semconv.incubating.GraphqlIncubatingAttributes;
1010
import io.opentelemetry.semconv.incubating.HttpIncubatingAttributes;
1111
import io.sentry.protocol.TransactionNameSource;
12+
import java.util.Arrays;
1213
import org.jetbrains.annotations.ApiStatus;
1314
import org.jetbrains.annotations.NotNull;
1415
import org.jetbrains.annotations.Nullable;
1516

16-
import java.util.Arrays;
17-
1817
@ApiStatus.Internal
1918
public final class SpanDescriptionExtractor {
2019

@@ -51,7 +50,8 @@ public final class SpanDescriptionExtractor {
5150
return null;
5251
}
5352

54-
private @NotNull OtelSpanInfo defaultInfo(final @NotNull SpanData otelSpan, final @Nullable IOtelSpanWrapper sentrySpan) {
53+
private @NotNull OtelSpanInfo defaultInfo(
54+
final @NotNull SpanData otelSpan, final @Nullable IOtelSpanWrapper sentrySpan) {
5555
final @NotNull String name = otelSpan.getName();
5656
final @Nullable String maybeDescription =
5757
sentrySpan != null ? sentrySpan.getDescription() : name;

0 commit comments

Comments
 (0)