@@ -14,7 +14,7 @@ namespace NetArchTest.Functions
1414{
1515 internal static partial class FunctionDelegates
1616 {
17- public static IEnumerable < TypeSpec > HaveName ( IEnumerable < TypeSpec > input , string name , bool condition )
17+ internal static IEnumerable < TypeSpec > HaveName ( IEnumerable < TypeSpec > input , string name , bool condition )
1818 {
1919 if ( condition )
2020 {
@@ -140,7 +140,7 @@ internal static IEnumerable<TypeSpec> ImplementsInterface(IEnumerable<TypeSpec>
140140 }
141141
142142 /// <summary> Function for finding abstract classes. </summary>
143- internal static IEnumerable < TypeSpec > BeAbstract ( IEnumerable < TypeSpec > input , bool dummy , bool condition )
143+ internal static IEnumerable < TypeSpec > BeAbstract ( IEnumerable < TypeSpec > input , bool condition )
144144 {
145145 if ( condition )
146146 {
@@ -153,7 +153,7 @@ internal static IEnumerable<TypeSpec> BeAbstract(IEnumerable<TypeSpec> input, bo
153153 }
154154
155155 /// <summary> Function for finding classes. </summary>
156- internal static IEnumerable < TypeSpec > BeClass ( IEnumerable < TypeSpec > input , bool dummy , bool condition )
156+ internal static IEnumerable < TypeSpec > BeClass ( IEnumerable < TypeSpec > input , bool condition )
157157 {
158158 if ( condition )
159159 {
@@ -166,7 +166,7 @@ internal static IEnumerable<TypeSpec> BeClass(IEnumerable<TypeSpec> input, bool
166166 }
167167
168168 /// <summary> Function for finding interfaces. </summary>
169- internal static IEnumerable < TypeSpec > BeInterface ( IEnumerable < TypeSpec > input , bool dummy , bool condition )
169+ internal static IEnumerable < TypeSpec > BeInterface ( IEnumerable < TypeSpec > input , bool condition )
170170 {
171171 if ( condition )
172172 {
@@ -179,7 +179,7 @@ internal static IEnumerable<TypeSpec> BeInterface(IEnumerable<TypeSpec> input, b
179179 }
180180
181181 /// <summary> Function for finding static classes. </summary>
182- internal static IEnumerable < TypeSpec > BeStatic ( IEnumerable < TypeSpec > input , bool dummy , bool condition )
182+ internal static IEnumerable < TypeSpec > BeStatic ( IEnumerable < TypeSpec > input , bool condition )
183183 {
184184 if ( condition )
185185 {
@@ -194,7 +194,7 @@ internal static IEnumerable<TypeSpec> BeStatic(IEnumerable<TypeSpec> input, bool
194194 }
195195
196196 /// <summary> Function for finding types with generic parameters. </summary>
197- internal static IEnumerable < TypeSpec > BeGeneric ( IEnumerable < TypeSpec > input , bool dummy , bool condition )
197+ internal static IEnumerable < TypeSpec > BeGeneric ( IEnumerable < TypeSpec > input , bool condition )
198198 {
199199 if ( condition )
200200 {
@@ -208,7 +208,7 @@ internal static IEnumerable<TypeSpec> BeGeneric(IEnumerable<TypeSpec> input, boo
208208
209209
210210 /// <summary> Function for finding nested classes. </summary>
211- internal static IEnumerable < TypeSpec > BeNested ( IEnumerable < TypeSpec > input , bool dummy , bool condition )
211+ internal static IEnumerable < TypeSpec > BeNested ( IEnumerable < TypeSpec > input , bool condition )
212212 {
213213 if ( condition )
214214 {
@@ -221,7 +221,7 @@ internal static IEnumerable<TypeSpec> BeNested(IEnumerable<TypeSpec> input, bool
221221 }
222222
223223 /// <summary> Function for finding nested public classes. </summary>
224- internal static IEnumerable < TypeSpec > BeNestedPublic ( IEnumerable < TypeSpec > input , bool dummy , bool condition )
224+ internal static IEnumerable < TypeSpec > BeNestedPublic ( IEnumerable < TypeSpec > input , bool condition )
225225 {
226226 if ( condition )
227227 {
@@ -234,7 +234,7 @@ internal static IEnumerable<TypeSpec> BeNestedPublic(IEnumerable<TypeSpec> input
234234 }
235235
236236 /// <summary> Function for finding nested private classes. </summary>
237- internal static IEnumerable < TypeSpec > BeNestedPrivate ( IEnumerable < TypeSpec > input , bool dummy , bool condition )
237+ internal static IEnumerable < TypeSpec > BeNestedPrivate ( IEnumerable < TypeSpec > input , bool condition )
238238 {
239239 if ( condition )
240240 {
@@ -248,7 +248,7 @@ internal static IEnumerable<TypeSpec> BeNestedPrivate(IEnumerable<TypeSpec> inpu
248248
249249
250250 /// <summary> Function for finding public classes. </summary>
251- internal static IEnumerable < TypeSpec > BePublic ( IEnumerable < TypeSpec > input , bool dummy , bool condition )
251+ internal static IEnumerable < TypeSpec > BePublic ( IEnumerable < TypeSpec > input , bool condition )
252252 {
253253 if ( condition )
254254 {
@@ -261,7 +261,7 @@ internal static IEnumerable<TypeSpec> BePublic(IEnumerable<TypeSpec> input, bool
261261 }
262262
263263 /// <summary> Function for finding sealed classes. </summary>
264- internal static IEnumerable < TypeSpec > BeSealed ( IEnumerable < TypeSpec > input , bool dummmy , bool condition )
264+ internal static IEnumerable < TypeSpec > BeSealed ( IEnumerable < TypeSpec > input , bool condition )
265265 {
266266 if ( condition )
267267 {
@@ -274,7 +274,7 @@ internal static IEnumerable<TypeSpec> BeSealed(IEnumerable<TypeSpec> input, bool
274274 }
275275
276276 /// <summary> Function for finding immutable classes. </summary>
277- internal static IEnumerable < TypeSpec > BeImmutable ( IEnumerable < TypeSpec > input , bool dummmy , bool condition )
277+ internal static IEnumerable < TypeSpec > BeImmutable ( IEnumerable < TypeSpec > input , bool condition )
278278 {
279279 if ( condition )
280280 {
@@ -287,7 +287,7 @@ internal static IEnumerable<TypeSpec> BeImmutable(IEnumerable<TypeSpec> input, b
287287 }
288288
289289 /// <summary> Function for finding nullable classes. </summary>
290- internal static IEnumerable < TypeSpec > HasNullableMembers ( IEnumerable < TypeSpec > input , bool dummmy , bool condition )
290+ internal static IEnumerable < TypeSpec > HasNullableMembers ( IEnumerable < TypeSpec > input , bool condition )
291291 {
292292 if ( condition )
293293 {
0 commit comments