#354 Some clean up and show the difference between paid and free a bit more.

This commit is contained in:
Joseph McCarthy
2016-01-26 18:58:35 +00:00
parent a1ede8980f
commit 32f9cf3ab1
6 changed files with 27 additions and 30 deletions
@@ -1,7 +1,14 @@
package com.iluwatar.featuretoggle.user;
/**
* Created by joseph on 26/01/16.
*/
public class User {
private String name;
public User(String name) {
this.name = name;
}
public String getName() {
return name;
}
}
@@ -3,9 +3,6 @@ package com.iluwatar.featuretoggle.user;
import java.util.ArrayList;
import java.util.List;
/**
* Created by joseph on 26/01/16.
*/
public class UserGroup {
private static List<User> freeGroup = new ArrayList<>();