Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README violations to getViolations() (#175)
First time setting up protovalidate-java, following the example given in the readme `if (result.violations.isEmpty()) {` brings up the following error: ``` violations has private access in build.buf.protovalidate.ValidationResult ``` Can fix by modifying to `if (result.getViolations().isEmpty()) {`
- Loading branch information