Skip to content

Commit da68b35

Browse files
authored
Merge branch 'main' into stefanosiano/feat/move-logs-out-experimental
2 parents 38ccf4c + 479f8cc commit da68b35

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@
1515
}
1616
```
1717

18+
### Improvements
19+
20+
- Remove internal API status from get/setDistinctId ([#4708](https://github.com/getsentry/sentry-java/pull/4708))
21+
1822
## 8.21.1
1923

2024
### Fixes

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1332,7 +1332,6 @@ public void setSessionTrackingIntervalMillis(long sessionTrackingIntervalMillis)
13321332
*
13331333
* @return the distinct Id
13341334
*/
1335-
@ApiStatus.Internal
13361335
public @Nullable String getDistinctId() {
13371336
return distinctId;
13381337
}
@@ -1342,7 +1341,6 @@ public void setSessionTrackingIntervalMillis(long sessionTrackingIntervalMillis)
13421341
*
13431342
* @param distinctId the distinct Id
13441343
*/
1345-
@ApiStatus.Internal
13461344
public void setDistinctId(final @Nullable String distinctId) {
13471345
this.distinctId = distinctId;
13481346
}

0 commit comments

Comments
 (0)