Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Summary Our [style guide](https://circlepay.atlassian.net/wiki/spaces/ENGINEERIN/pages/386957608/Circle+Java+Style+Guide#Empty-blocks%3A-may-be-concise) allows for empty blocks. We update our Checkstyle to allow empty blocks, too. ## Detail ### Prior to this change This was illegal: ```java class Clazz {} ``` ### With this change This is legal: ```java class Clazz {} ``` This is legal, too: ```java class Clazz { } ``` This is still illegal: ```java class Class { private String field; } ``` ## Testing This change passes on entity-service & transaction-core. ## Documentation None. --- **Requested Reviewers:** @asharp-circle @creilly12 @istvancircle @rschmitz-circle
- Loading branch information