mbien commented on PR #7733:
URL: https://github.com/apache/netbeans/pull/7733#issuecomment-2332792410
I tested this with the following setup:
`/tmp/sources/Main.java`
```java
public class Main {
public static void main(String args[]) {
System.out.println("hello");
System.out.println(Runtime.version());
dev.test.Util.foo();
}
}
```
`/tmp/sources/dev/test/Util.java`
```java
package dev.test;
public class Util {
public static void foo() {
System.out.println("foo called");
}
}
```
and added `/tmp `to the favorites window.
this caused:
```
WARNING [org.netbeans.modules.java.source.tasklist.IncorrectErrorBadges]:
Incorrect error badges detected, file=/tmp/sources/Main.java.
WARNING [org.netbeans.modules.java.source.tasklist.IncorrectErrorBadges]:
Not PathRegistry controlled root: /tmp/sources@5c553aa0:17939bbf
```
although the error badges were sometimes not visible until I restarted
NetBeans.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists