We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 787b683 commit f932beeCopy full SHA for f932bee
2 files changed
CHANGELOG.md
@@ -6,6 +6,10 @@
6
7
- Use logger from options for JVM profiler ([#4771](https://github.com/getsentry/sentry-java/pull/4771))
8
9
+### Miscellaneous
10
+
11
+- Mark SentryClient(SentryOptions) constructor as not internal ([#4787](https://github.com/getsentry/sentry-java/pull/4787))
12
13
### Dependencies
14
15
- 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
@@ -48,7 +48,6 @@ public boolean isEnabled() {
48
return enabled;
49
}
50
51
- @ApiStatus.Internal
52
public SentryClient(final @NotNull SentryOptions options) {
53
this.options = Objects.requireNonNull(options, "SentryOptions is required.");
54
this.enabled = true;
0 commit comments