diff --git a/src/YamlValidator/ValidatorResults.cs b/src/YamlValidator/ValidatorResults.cs index ffeadc89..e7565148 100644 --- a/src/YamlValidator/ValidatorResults.cs +++ b/src/YamlValidator/ValidatorResults.cs @@ -12,11 +12,11 @@ public class ValidatorResults public ValidatorResults(bool schemaValid, IReadOnlyList traversalResults) { SchemaValid = schemaValid; - TraversalResults = filterErrors(traversalResults); + TraversalResults = FilterErrors(traversalResults); } // This will filter out the false positives that are not relevant to the error output, when the validation is false - private ReadOnlyCollection filterErrors(IReadOnlyList traversalResults) + private ReadOnlyCollection FilterErrors(IReadOnlyList traversalResults) { var maxSchemaArraySuffixSize = 0; var maxSchemaObjectSuffixSize = 0;