Skip to content

Commit

Permalink
x
Browse files Browse the repository at this point in the history
  • Loading branch information
tmat committed Feb 29, 2024
1 parent 9f6a611 commit 48ea81c
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,20 +76,16 @@ await context.SetSearchTitleAsync(
}
else if (baseSymbol.Locations.Any(static l => l.IsInMetadata))
{
<<<<<<< HEAD
var definitionItem = baseSymbol.ToNonClassifiedDefinitionItem(
solution, FindReferencesSearchOptions.Default, includeHiddenLocations: true);
await context.OnDefinitionFoundAsync(definitionItem, cancellationToken).ConfigureAwait(false);
found = true;
=======
await context.ReportNoResultsAsync(FeaturesResources.The_symbol_has_no_base, cancellationToken).ConfigureAwait(false);
>>>>>>> 3cfe0335311 (FindUsage report message severity)
}
}

if (!found)
{
await context.ReportMessageAsync(FeaturesResources.The_symbol_has_no_base, cancellationToken).ConfigureAwait(false);
await context.ReportNoResultsAsync(FeaturesResources.The_symbol_has_no_base, cancellationToken).ConfigureAwait(false);
}
}
}

0 comments on commit 48ea81c

Please sign in to comment.