Comparing 1c-syntax/bsl-language-server 22dccc6..8e40ccd
View on GitHub1 changed file
with 1 addition
and 1 deletion.
+1, -1•src/main/java/com/github/_1c_syntax/bsl/languageserver/configuration/databind/AnnotationsDeserializer.java
@@ -54,7 +54,7 @@ public class AnnotationsDeserializer extends JsonDeserializer<Set<String>> {
Set<String> annotationsSet = new TreeSet<>(String.CASE_INSENSITIVE_ORDER);
var objectMapper = (ObjectMapper) p.getCodec();
objectMapper.readerForUpdating(annotationsSet).readValue(p);
objectMapper.readerForUpdating(annotationsSet).readValue(annotations);
return annotationsSet;
}