Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
patches/8260.diff
patches/8280.diff
patches/8289.diff
patches/disable-error-notification.diff
patches/mvn-sh.diff
patches/project-marker-jdk.diff
patches/generate-dependencies.diff
Expand Down
12 changes: 12 additions & 0 deletions patches/disable-error-notification.diff
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/ErrorsNotifier.java b/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/ErrorsNotifier.java
index c79de141f6..4bef234b0e 100644
--- a/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/ErrorsNotifier.java
+++ b/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/ErrorsNotifier.java
@@ -50,6 +50,7 @@ public final class ErrorsNotifier {
}

public void notifyErrors(URL root) {
+ if (true) return ; //disable the error notification for now
List<LspServerState> toRemove = new ArrayList<>();
List<LspServerState> toProcess = new ArrayList<>();
synchronized (servers) {