Skip to content

Commit ad080f9

Browse files
committed
Remove the unused optional parameter
1 parent 50e778f commit ad080f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rubberduck.Parsing/Symbols/DeclarationFinder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -686,7 +686,7 @@ public Declaration FindMemberEnclosingModule(Declaration callingModule, Declarat
686686
return null;
687687
}
688688

689-
public Declaration FindMemberEnclosingProcedure(Declaration enclosingProcedure, string memberName, DeclarationType memberType, ParserRuleContext onSiteContext = null)
689+
public Declaration FindMemberEnclosingProcedure(Declaration enclosingProcedure, string memberName, DeclarationType memberType)
690690
{
691691
var allMatches = MatchName(memberName);
692692
var memberMatches = allMatches.Where(m =>

0 commit comments

Comments
 (0)