Skip to content

Commit

Permalink
!fixup! Don't (uselessly) check for attributes on a namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
dougbu committed Jan 6, 2020
1 parent d40424d commit faadc8a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public class ExcludeCompilerGeneratedCciFilter : ICciFilter

public virtual bool Include(INamespaceDefinition ns)
{
return IsNotMarkedWithAttribute(ns) && ns.GetTypes(includeForwards: true).Any(Include);
return ns.GetTypes(includeForwards: true).Any(Include);
}

public virtual bool Include(ITypeDefinition type)
Expand Down

0 comments on commit faadc8a

Please sign in to comment.