We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 91b1f87 commit 27f8be9Copy full SHA for 27f8be9
src/Razor/src/Microsoft.AspNetCore.Razor.LanguageServer/ProjectSystem/SnapshotResolver.cs
@@ -47,11 +47,6 @@ public Task InitializeAsync(CancellationToken cancellationToken)
47
/// <inheritdoc/>
48
public ImmutableArray<IProjectSnapshot> FindPotentialProjects(string documentFilePath)
49
{
50
- if (documentFilePath is null)
51
- {
52
- throw new ArgumentNullException(nameof(documentFilePath));
53
- }
54
-
55
var normalizedDocumentPath = FilePathNormalizer.Normalize(documentFilePath);
56
57
using var projects = new PooledArrayBuilder<IProjectSnapshot>();
0 commit comments