We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2c1810 commit 5c4f415Copy full SHA for 5c4f415
gbfs-validator-java/src/main/java/org/entur/gbfs/validation/model/FileValidationResult.java
@@ -47,15 +47,11 @@ public record FileValidationResult(
47
List<ValidatorError> validatorErrors
48
) implements ValidationResultComponentIdentity<FileValidationResult> {
49
50
- // Canonical constructor provided by record will be used.
51
- // For defensive copying if needed, a custom compact constructor could be added:
52
public FileValidationResult {
53
- // Make defensive copies if lists are mutable and external
54
errors = new ArrayList<>(errors);
55
validatorErrors = new ArrayList<>(validatorErrors);
56
}
57
-
58
+
59
@Override
60
public String toString() {
61
return "FileValidationResult{" +
0 commit comments