Skip to content

Commit 479f8cc

Browse files
authored
Remove internal API status from get/setDistinctId (#4708)
1 parent 278b42e commit 479f8cc

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
@@ -14,6 +14,10 @@
1414
}
1515
```
1616

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

1923
### 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)