Non-argument constructor for JSON doesn't need to be public

Change-Id: I9b17719dc39c5b7597087478db806b1fa7b4c925
Signed-off-by: Edwin Kempin <edwin.kempin@sap.com>
This commit is contained in:
Edwin Kempin
2011-11-15 09:40:25 +01:00
parent 8033dc204f
commit 922136fbde

View File

@@ -22,7 +22,7 @@ public class GroupList {
protected List<GroupDetail> groups;
protected boolean canCreateGroup;
public GroupList() {
protected GroupList() {
}
public GroupList(final List<GroupDetail> groups, final boolean canCreateGroup) {