Skip to content

Commit 01e1b54

Browse files
committed
Merge remote-tracking branch 'my-artbear/ref-index-fix-2832' into ref-index-fix-2832
2 parents 43676d0 + 0e2d0d8 commit 01e1b54

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/github/_1c_syntax/bsl/languageserver/references/ReferenceIndexFiller.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public void fill(DocumentContext documentContext) {
8989
private class MethodSymbolReferenceIndexFinder extends BSLParserBaseVisitor<BSLParserRuleContext> {
9090

9191
private final DocumentContext documentContext;
92-
private Collection<String> commonModuleMdoRefFromSubParams = Collections.emptySet();
92+
private Set<String> commonModuleMdoRefFromSubParams = Collections.emptySet();
9393

9494
@Override
9595
public BSLParserRuleContext visitProcDeclaration(BSLParser.ProcDeclarationContext ctx) {
@@ -241,7 +241,7 @@ private String getModule(BSLParser.CallParamContext callParamContext) {
241241
.orElse(MdoRefBuilder.getMdoRef(documentContext));
242242
}
243243

244-
private Collection<String> calcParams(@Nullable BSLParser.ParamListContext paramList) {
244+
private Set<String> calcParams(@Nullable BSLParser.ParamListContext paramList) {
245245
if (paramList == null) {
246246
return Collections.emptySet();
247247
}

0 commit comments

Comments
 (0)