File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
src/main/java/com/github/_1c_syntax/bsl/languageserver/references Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -89,7 +89,7 @@ public void fill(DocumentContext documentContext) {
89
89
private class MethodSymbolReferenceIndexFinder extends BSLParserBaseVisitor <BSLParserRuleContext > {
90
90
91
91
private final DocumentContext documentContext ;
92
- private Collection <String > commonModuleMdoRefFromSubParams = Collections .emptySet ();
92
+ private Set <String > commonModuleMdoRefFromSubParams = Collections .emptySet ();
93
93
94
94
@ Override
95
95
public BSLParserRuleContext visitProcDeclaration (BSLParser .ProcDeclarationContext ctx ) {
@@ -241,7 +241,7 @@ private String getModule(BSLParser.CallParamContext callParamContext) {
241
241
.orElse (MdoRefBuilder .getMdoRef (documentContext ));
242
242
}
243
243
244
- private Collection <String > calcParams (@ Nullable BSLParser .ParamListContext paramList ) {
244
+ private Set <String > calcParams (@ Nullable BSLParser .ParamListContext paramList ) {
245
245
if (paramList == null ) {
246
246
return Collections .emptySet ();
247
247
}
You can’t perform that action at this time.
0 commit comments