#354 Fixed CheckStyle Issues

This commit is contained in:
Joseph McCarthy
2016-01-26 19:20:28 +00:00
parent 32f9cf3ab1
commit 91b2379fd0
7 changed files with 100 additions and 89 deletions

View File

@@ -2,13 +2,13 @@ package com.iluwatar.featuretoggle.user;
public class User {
private String name;
private String name;
public User(String name) {
this.name = name;
}
public User(String name) {
this.name = name;
}
public String getName() {
return name;
}
public String getName() {
return name;
}
}