Michael Bien
Michael Bien
good info. Might be indeed a performance problem under certain circumstances. I have a lot of netbeans modules open right now and it usually takes 1-3s until the status updates....
ok so this is not a bug but a windows specific performance issue. `org.netbeans.modules.git.FileStatusCache` in `ide/git` is the entry point in case anyone is interested to investigate. Going to rename...
yeah this is likely related to #4257, the editor thinks those are not the same fields (since its both a parameter and a field) for some reason - if you...
this probably needs the platform label. But I don't think it matters here since there are no platform tests on windows runners anyway. more details: https://lists.apache.org/thread/3gyc3xvxjjh8osh5rd6k81lshtno0j0z the description mentions what...
wondering what happens if a dialog opens a dialog. Would this risk to open the new dialog behind the other since the parent is the main window? I *think* with...
> > the class that opens the dialog is itself an instance of `java.awt.Component`. In that case it could be passed to `JFileChooser#show*Dialog` > > Yes, that would be best....
same exception was reported in #3958, I knew i saw that one before :)
null is actually a valid return value: https://docs.oracle.com/en/java/javase/17/docs/api/java.base/java/net/URLConnection.html#getContentType() so the JDK should probably check for that (haven't looked at the code yet since the source I am looking at doesn't...
It think the system uses the file name (minus ending) as hint name by default if it wasn't configured anywhere else (see [hint option](https://netbeans.apache.org/jackpot/HintsFileFormat.html#_options)). I imagine this is likely what...
oops. Turns out `-` has a special meaning. Not sure what exactly but it removes everything after it from the name. Might have to dig into the old repo to...