We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59068b8 commit d552d04Copy full SHA for d552d04
sentry/src/main/java/io/sentry/protocol/SentryId.java
@@ -33,9 +33,9 @@ public SentryId(@Nullable UUID uuid) {
33
public SentryId(final @NotNull String sentryIdString) {
34
if (sentryIdString.length() != 32 && sentryIdString.length() != 36) {
35
throw new IllegalArgumentException(
36
- "String representation of SentryId has either 32 (UUID no dashes) "
37
- + "or 36 characters long (completed UUID). Received: "
38
- + sentryIdString);
+ "String representation of SentryId has either 32 (UUID no dashes) "
+ + "or 36 characters long (completed UUID). Received: "
+ + sentryIdString);
39
}
40
this.lazyValue =
41
new LazyEvaluator<>(() -> fromStringSentryId(StringUtils.normalizeUUID(sentryIdString)));
0 commit comments