Commit 855fddbd093288e84948db99118e9fce0ccf0083
1 parent
833dcdad
Exists in
master
Correção de checkstyle
Showing
1 changed file
with
5 additions
and
4 deletions
Show diff stats
src/main/java/br/com/checker/emag/xml/CheckPoint.java
... | ... | @@ -2,9 +2,10 @@ package br.com.checker.emag.xml; |
2 | 2 | |
3 | 3 | import lombok.Data; |
4 | 4 | |
5 | -public @Data class CheckPoint { | |
5 | +@Data | |
6 | +public class CheckPoint { | |
6 | 7 | |
7 | - private String description; | |
8 | - private int totalErrors; | |
9 | - private int totalWarnings; | |
8 | + private String description; | |
9 | + private int totalErrors; | |
10 | + private int totalWarnings; | |
10 | 11 | } | ... | ... |