Skip to content

Commit 13aaed5

Browse files
committed
Update existing code to use provided substitutes
1 parent f7849f4 commit 13aaed5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Tools/LeanCode.CodeAnalysis/CodeActions/FixCQRSHandlerNamespaceCodeAction.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ CancellationToken cancellationToken
115115
}
116116

117117
var updatedText = (await document.GetTextAsync(cancellationToken)).ToString();
118-
await File.WriteAllTextAsync(newPath, updatedText, cancellationToken);
118+
await MissingFileMethods.WriteAllTextAsync(newPath, updatedText, cancellationToken);
119119
File.Delete(document.FilePath);
120120
}
121121
}

0 commit comments

Comments
 (0)