Skip to content

Commit d552d04

Browse files
committed
Format code
1 parent 59068b8 commit d552d04

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sentry/src/main/java/io/sentry/protocol/SentryId.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ public SentryId(@Nullable UUID uuid) {
3333
public SentryId(final @NotNull String sentryIdString) {
3434
if (sentryIdString.length() != 32 && sentryIdString.length() != 36) {
3535
throw new IllegalArgumentException(
36-
"String representation of SentryId has either 32 (UUID no dashes) "
37-
+ "or 36 characters long (completed UUID). Received: "
38-
+ sentryIdString);
36+
"String representation of SentryId has either 32 (UUID no dashes) "
37+
+ "or 36 characters long (completed UUID). Received: "
38+
+ sentryIdString);
3939
}
4040
this.lazyValue =
4141
new LazyEvaluator<>(() -> fromStringSentryId(StringUtils.normalizeUUID(sentryIdString)));

0 commit comments

Comments
 (0)