Skip to content

Commit 638152a

Browse files
committed
Format code
1 parent 9bc1f3a commit 638152a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

sentry-jcache/src/main/java/io/sentry/jcache/SentryJCacheWrapper.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -468,7 +468,8 @@ public Iterator<Entry<K, V>> iterator() {
468468
private @Nullable ISpan startSpan(
469469
final @Nullable Object key, final @NotNull String operationName) {
470470
final String keyString = key != null ? String.valueOf(key) : null;
471-
return startSpan(operationName, keyString, keyString != null ? Collections.singletonList(keyString) : null);
471+
return startSpan(
472+
operationName, keyString, keyString != null ? Collections.singletonList(keyString) : null);
472473
}
473474

474475
private @Nullable ISpan startSpanForKeys(

0 commit comments

Comments
 (0)