Skip to content

Commit f932bee

Browse files
lcianromtsn
authored andcommitted
Mark SentryClient(SentryOptions) constructor as not internal (#4787)
1 parent 787b683 commit f932bee

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@
66

77
- Use logger from options for JVM profiler ([#4771](https://github.com/getsentry/sentry-java/pull/4771))
88

9+
### Miscellaneous
10+
11+
- Mark SentryClient(SentryOptions) constructor as not internal ([#4787](https://github.com/getsentry/sentry-java/pull/4787))
12+
913
### Dependencies
1014

1115
- Bump Native SDK from v0.10.1 to v0.11.2 ([#4775](https://github.com/getsentry/sentry-java/pull/4775))

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ public boolean isEnabled() {
4848
return enabled;
4949
}
5050

51-
@ApiStatus.Internal
5251
public SentryClient(final @NotNull SentryOptions options) {
5352
this.options = Objects.requireNonNull(options, "SentryOptions is required.");
5453
this.enabled = true;

0 commit comments

Comments
 (0)