We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7572ad6 commit 5e44ad9Copy full SHA for 5e44ad9
1 file changed
src/main/java/com/github/_1c_syntax/bsl/languageserver/context/symbol/annotations/Annotation.java
@@ -24,7 +24,7 @@
24
import lombok.Builder;
25
import lombok.Value;
26
27
-import java.util.ArrayList;
+import java.util.Collections;
28
import java.util.List;
29
30
/**
@@ -38,5 +38,5 @@ public class Annotation {
38
AnnotationKind kind;
39
40
@Builder.Default
41
- List<AnnotationParameterDefinition> parameters = new ArrayList<>();
+ List<AnnotationParameterDefinition> parameters = Collections.emptyList();
42
}
0 commit comments