1 parent bc7a944 commit ac8a6e1Copy full SHA for ac8a6e1
1 file changed
src/Microsoft.OpenApi/Validations/Rules/OpenApiSchemaRules.cs
@@ -182,7 +182,7 @@ private static IEnumerable<OpenApiSchema> GetSchemaCombinators(OpenApiSchema sch
182
183
private static void EnqueueSchemas(Queue<OpenApiSchema> schemasToVisit, IEnumerable<OpenApiSchema> childSchemas)
184
{
185
- foreach (var childSchema in childSchemas.Where(s => is not null))
+ foreach (var childSchema in childSchemas.Where(s => s is not null))
186
187
schemasToVisit.Enqueue(childSchema);
188
}
0 commit comments