Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

### Improvements

- Remove internal API status from get/setDistinctId ([#4708](https://github.com/getsentry/sentry-java/pull/4708))

## 8.21.1

### Fixes
Expand Down
2 changes: 0 additions & 2 deletions sentry/src/main/java/io/sentry/SentryOptions.java
Original file line number Diff line number Diff line change
Expand Up @@ -1329,7 +1329,6 @@ public void setSessionTrackingIntervalMillis(long sessionTrackingIntervalMillis)
*
* @return the distinct Id
*/
@ApiStatus.Internal
public @Nullable String getDistinctId() {
return distinctId;
}
Expand All @@ -1339,7 +1338,6 @@ public void setSessionTrackingIntervalMillis(long sessionTrackingIntervalMillis)
*
* @param distinctId the distinct Id
*/
@ApiStatus.Internal
public void setDistinctId(final @Nullable String distinctId) {
this.distinctId = distinctId;
}
Expand Down
Loading