We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 995d38f commit 0bfca6bCopy full SHA for 0bfca6b
src/main/java/org/entur/gbfs/validation/model/FileValidationResult.java
@@ -18,6 +18,7 @@
18
19
package org.entur.gbfs.validation.model;
20
21
+import java.util.Collections;
22
import java.util.List;
23
import java.util.Objects;
24
import java.util.stream.IntStream;
@@ -30,7 +31,7 @@ public class FileValidationResult implements ValidationResultComponentIdentity<F
30
31
private String schema;
32
private String fileContents;
33
private String version;
- private List<FileValidationError> errors;
34
+ private List<FileValidationError> errors = Collections.emptyList();
35
36
public String getFile() {
37
return file;
0 commit comments