Commit 855fddbd093288e84948db99118e9fce0ccf0083

Authored by Carlos Vieira
1 parent 833dcdad
Exists in master

Correção de checkstyle

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 }
... ...