We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents acd0c87 + 1f8667a commit 995d38fCopy full SHA for 995d38f
src/main/java/org/entur/gbfs/validation/model/FileValidationResult.java
@@ -117,8 +117,6 @@ public boolean sameAs(FileValidationResult other) {
117
if (exists != other.exists) return false;
118
if (errorsCount != other.errorsCount) return false;
119
if (!Objects.equals(file, other.file)) return false;
120
- if (!Objects.equals(schema, other.schema)) return false;
121
- if (!Objects.equals(fileContents, other.fileContents)) return false;
122
if (!Objects.equals(version, other.version)) return false;
123
return IntStream
124
.range(0, errors.size())
0 commit comments