Skip to content

Commit

Permalink
Remove the unused optional parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
bclothier committed Apr 8, 2018
1 parent 50e778f commit ad080f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Rubberduck.Parsing/Symbols/DeclarationFinder.cs
Expand Up @@ -686,7 +686,7 @@ public Declaration FindMemberEnclosingModule(Declaration callingModule, Declarat
return null;
}

public Declaration FindMemberEnclosingProcedure(Declaration enclosingProcedure, string memberName, DeclarationType memberType, ParserRuleContext onSiteContext = null)
public Declaration FindMemberEnclosingProcedure(Declaration enclosingProcedure, string memberName, DeclarationType memberType)
{
var allMatches = MatchName(memberName);
var memberMatches = allMatches.Where(m =>
Expand Down

0 comments on commit ad080f9

Please sign in to comment.