File tree Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Expand file tree Collapse file tree 2 files changed +13
-0
lines changed Original file line number Diff line number Diff line change 56
56
patches/8260.diff
57
57
patches/8280.diff
58
58
patches/8289.diff
59
+ patches/disable-error-notification.diff
59
60
patches/mvn-sh.diff
60
61
patches/project-marker-jdk.diff
61
62
patches/generate-dependencies.diff
Original file line number Diff line number Diff line change
1
+ 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
2
+ index c79de141f6..4bef234b0e 100644
3
+ --- a/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/ErrorsNotifier.java
4
+ +++ b/java/java.lsp.server/src/org/netbeans/modules/java/lsp/server/protocol/ErrorsNotifier.java
5
+ @@ -50,6 +50,7 @@ public final class ErrorsNotifier {
6
+ }
7
+
8
+ public void notifyErrors(URL root) {
9
+ + if (true) return ; //disable the error notification for now
10
+ List<LspServerState> toRemove = new ArrayList<>();
11
+ List<LspServerState> toProcess = new ArrayList<>();
12
+ synchronized (servers) {
You can’t perform that action at this time.
0 commit comments