Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Remove redundant return
  • Loading branch information
IvenBach committed Aug 21, 2019
1 parent 56dbe97 commit ad578b4
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions Rubberduck.Core/UI/Inspections/InspectionResultsViewModel.cs
Expand Up @@ -279,11 +279,6 @@ public string InspectionDescriptionFilter

private bool FilterResults(object inspectionResult)
{
if (InspectionDescriptionFilter == string.Empty)
{
return true;
}

var inspectionResultBase = inspectionResult as InspectionResultBase;

return inspectionResultBase.Description.ToUpper().Contains(InspectionDescriptionFilter.ToUpper()); ;
Expand Down

0 comments on commit ad578b4

Please sign in to comment.