#354 Added Configuration Based Example of Feature Toggle

This commit is contained in:
Joseph McCarthy
2016-01-26 21:08:28 +00:00
parent d627b7af6b
commit ba1d3a0fbf
4 changed files with 61 additions and 2 deletions

View File

@@ -8,7 +8,8 @@ public class User {
this.name = name;
}
public String getName() {
@Override
public String toString() {
return name;
}
}