Skip to content

Commit ad578b4

Browse files
committed
Remove redundant return
1 parent 56dbe97 commit ad578b4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

Rubberduck.Core/UI/Inspections/InspectionResultsViewModel.cs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -279,11 +279,6 @@ public string InspectionDescriptionFilter
279279

280280
private bool FilterResults(object inspectionResult)
281281
{
282-
if (InspectionDescriptionFilter == string.Empty)
283-
{
284-
return true;
285-
}
286-
287282
var inspectionResultBase = inspectionResult as InspectionResultBase;
288283

289284
return inspectionResultBase.Description.ToUpper().Contains(InspectionDescriptionFilter.ToUpper()); ;

0 commit comments

Comments
 (0)