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
When I return a null configuration value, this is reported by the message validator:
Caused by: org.eclipse.lsp4j.jsonrpc.MessageIssueException: Lists must not contain null references. Path: $.result[0]
at org.eclipse.lsp4j.jsonrpc.validation.ReflectiveMessageValidator.consume(ReflectiveMessageValidator.java:67)
As far as I understand null values to the configuration request should be accepted by the message validator.
The text was updated successfully, but these errors were encountered:
LSP4J 0.23.1
The LSP contains this about the response to the
workspace/configuration
request:LSP4J's method signature requires to return a
List<Object>
, butReflectiveMessageValidator
always seems to reportnull
values in lists as incorrect.When I return a
null
configuration value, this is reported by the message validator:As far as I understand
null
values to the configuration request should be accepted by the message validator.The text was updated successfully, but these errors were encountered: