Skip to content

Commit e54ef44

Browse files
authored
Merge ede545e into 119eeca
2 parents 119eeca + ede545e commit e54ef44

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
### Improvements
6+
7+
- Remove internal API status from get/setDistinctId ([#4708](https://github.com/getsentry/sentry-java/pull/4708))
8+
39
## 8.21.1
410

511
### Fixes

sentry/src/main/java/io/sentry/SentryOptions.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1329,7 +1329,6 @@ public void setSessionTrackingIntervalMillis(long sessionTrackingIntervalMillis)
13291329
*
13301330
* @return the distinct Id
13311331
*/
1332-
@ApiStatus.Internal
13331332
public @Nullable String getDistinctId() {
13341333
return distinctId;
13351334
}
@@ -1339,7 +1338,6 @@ public void setSessionTrackingIntervalMillis(long sessionTrackingIntervalMillis)
13391338
*
13401339
* @param distinctId the distinct Id
13411340
*/
1342-
@ApiStatus.Internal
13431341
public void setDistinctId(final @Nullable String distinctId) {
13441342
this.distinctId = distinctId;
13451343
}

0 commit comments

Comments
 (0)