You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From what I've found, the language-server spec specifies, that the response to a shutdown request should have a result of null (see here), however it seems that in XMLLanguageServer.java a new Object() is returned instead.
I wanted to create a pull request, but since that involved giving you my full name and contact information, I thought I would just add the suggested patch here, as it is very small.
Does this affect any clients that you've used? I tested it with VS Code and neovim, and either {} or null seems to work there.
I'll make the fix; we can also get rid of the computeAsync, since it makes no sense to cancel the shutdown request. This might save a few bytes of RAM during shutdown :D
From what I've found, the language-server spec specifies, that the response to a shutdown request should have a result of
null
(see here), however it seems that inXMLLanguageServer.java
anew Object()
is returned instead.I wanted to create a pull request, but since that involved giving you my full name and contact information, I thought I would just add the suggested patch here, as it is very small.
The text was updated successfully, but these errors were encountered: