Skip to content

Commit 0ca7824

Browse files
committed
updated to use its own internal version
1 parent 33e4cda commit 0ca7824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PowerShellEditorServices/Services/PowerShell/Refactoring/IterativeFunctionVistor.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public IterativeFunctionRename(string OldName, string NewName, int StartLineNumb
4040
}
4141
if (Node is CommandAst)
4242
{
43-
TargetFunctionAst = FunctionRename.GetFunctionDefByCommandAst(OldName, StartLineNumber, StartColumnNumber, ScriptAst);
43+
TargetFunctionAst = GetFunctionDefByCommandAst(OldName, StartLineNumber, StartColumnNumber, ScriptAst);
4444
if (TargetFunctionAst == null)
4545
{
4646
throw new FunctionDefinitionNotFoundException();

0 commit comments

Comments
 (0)