ADD:: added javadoc comments where needed for the checkstyle

EDIT:: edited some lines to fit the checkstyle

fixed some indentation warnings and line length warnings
This commit is contained in:
Sem van der Hoeven
2019-03-11 16:44:55 +01:00
parent ece58798f1
commit 5877e307d5
9 changed files with 136 additions and 83 deletions

View File

@@ -1,12 +1,11 @@
package gogreen.common;
public class UserDTO {
private Long id;
private Long id;
private String name;
public UserDTO() {
}
}
public UserDTO(Long id, String name) {
this.id = id;