Skip to content

Commit 7c8c65c

Browse files
committed
add missing annotations
1 parent 05f222d commit 7c8c65c

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

sentry/src/main/java/io/sentry/NoOpSentryClient.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
import io.sentry.protocol.SentryId;
44
import io.sentry.protocol.SentryTransaction;
5+
import org.jetbrains.annotations.ApiStatus;
56
import org.jetbrains.annotations.NotNull;
67
import org.jetbrains.annotations.Nullable;
78

@@ -54,6 +55,7 @@ public SentryId captureEnvelope(@NotNull SentryEnvelope envelope, @Nullable Hint
5455
}
5556

5657
@Override
58+
@ApiStatus.Experimental
5759
public @NotNull SentryId captureCheckIn(
5860
@NotNull CheckIn checkIn, @Nullable Scope scope, @Nullable Hint hint) {
5961
return SentryId.EMPTY_ID;

sentry/src/main/java/io/sentry/SentryClient.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -672,6 +672,7 @@ public void captureSession(final @NotNull Session session, final @Nullable Hint
672672
}
673673

674674
@Override
675+
@ApiStatus.Experimental
675676
public @NotNull SentryId captureCheckIn(
676677
@NotNull CheckIn checkIn, final @Nullable Scope scope, @Nullable Hint hint) {
677678
if (hint == null) {

0 commit comments

Comments
 (0)