Interface IBugPruner
Defines an interface for how to remove bugs from a search.
Namespace: Microsoft.Internal.Studios.Aruba.Infrastructure
Assembly: Aruba.Infrastructure.dll
Syntax
public interface IBugPruner
Methods
View SourcePrune(IEnumerable<BugInfo>)
Removes bugs from a given collection.
Declaration
IEnumerable<DupeCheckBugInfo> Prune(IEnumerable<BugInfo> dupeCheckBugs)
Parameters
| Type | Name | Description |
|---|---|---|
| IEnumerable<BugInfo> | dupeCheckBugs | The collection of potential duplicate bugs. |
Returns
| Type | Description |
|---|---|
| IEnumerable<DupeCheckBugInfo> | A collection of duplicate check bugs that remain after |