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 cc38d83 commit 4ba6717Copy full SHA for 4ba6717
src/main/com/intellij/lang/jsgraphql/ide/diagnostic/GraphQLSentryClient.java
@@ -4,7 +4,7 @@
4
import io.sentry.SentryEvent;
5
import org.jetbrains.annotations.NotNull;
6
7
-public class GraphQLSentryClient {
+public final class GraphQLSentryClient {
8
private static class Lazy {
9
private static final GraphQLSentryClient ourClient = new GraphQLSentryClient();
10
}
@@ -13,7 +13,7 @@ public static GraphQLSentryClient getInstance() {
13
return Lazy.ourClient;
14
15
16
- public GraphQLSentryClient() {
+ private GraphQLSentryClient() {
17
Sentry.init(options -> options.setDsn("https://[email protected]/6097822"));
18
19
0 commit comments