netbeans
netbeans copied to clipboard
Apache NetBeans
NetBeans GlassFish module notes: - Use `ConcurrentHashMap` insted of `Collections.synchronizedMap` - Use `ConcurrentHashMap.newKeySet` instead of `Collections.synchronizedMap` - When using `ConcurrentHashMap` remove some synchronized blocks when using atomic and concurrent operations...
### Apache NetBeans version Apache NetBeans 21 ### What happened ```js for (let i = 0; i < cellsInRange.length; i++) { let ci = cellsInRange[i]; if (!ci.cell.open) { let ims...
I'm doing some small work with Micronaut lately, and wished that the annotations would be more distinctive in the editor. It seemed it is not that easy to set a...
~~I have upgraded Jersey from 2.35 to 3.1.3. Related dependencies were upgraded and references to javax were switched to jakarta as well.~~ I have created a new module for Jersey...
Well, I while ago I've promised to add some CSS config to the Markdown preview, if there is someone who can create a CSS for it. Well here it is....
This PR adds support for the Payara Server instance running on WSL. Usually, developers can register instances running on WSL as remote servers in Apache NetBeans. However, with this PR,...
### Description An `ErrorProvider` must create Diagnostic objects through its Builder, so it cannot control (maintain) the identity easily. But it needs to somehow allow to pair previous and current...
### Apache NetBeans version Apache NetBeans 19 ### What happened When importing the settings, all document groups are transferred correctly, but the documents themselves are not. I have been registering...
As discovered in https://github.com/apache/netbeans/pull/6213#discussion_r1359320621, the proxy class delegates a subset of the methods to the wrapped `JavaPlatform` which creates a frankenstein platform. https://github.com/apache/netbeans/blob/a9aeefafc04e2d79a4702be88d890324365989bd/java/java.platform/src/org/netbeans/spi/java/platform/support/ForwardingJavaPlatform.java#L36 https://github.com/apache/netbeans/blob/a9aeefafc04e2d79a4702be88d890324365989bd/java/java.platform/src/org/netbeans/api/java/platform/JavaPlatform.java#L41 has final methods and was not...
When the LSP server starts to listen on a socket, anyone on the given machine can connect. This patch adds an optional ability to generate a code (send back together...