save changes

git-svn-id: https://svn.libreccm.org/ccm/trunk@4143 8810af33-2d31-482b-a856-94f89814c4df
master
tosmers 2016-06-07 11:59:10 +00:00
parent e691c1ba0d
commit 69c8c3d56c
2 changed files with 1 additions and 4 deletions

View File

@ -39,7 +39,7 @@ public class User extends Party implements Identifiable {
public User(com.arsdigita.kernel.User sysUser) { public User(com.arsdigita.kernel.User sysUser) {
super(sysUser); super(sysUser);
this.personName = sysUser.getPersonName().toString(); this.personName = sysUser.getPersonName().toString(); //family and given name split
this.screenName = sysUser.getScreenName(); this.screenName = sysUser.getScreenName();
this.groups = CollectionConverter.convertGroups(sysUser.getGroups()); this.groups = CollectionConverter.convertGroups(sysUser.getGroups());
} }

View File

@ -18,9 +18,6 @@
*/ */
package com.arsdigita.portation.cmd; package com.arsdigita.portation.cmd;
import com.arsdigita.kernel.GroupCollection;
import com.arsdigita.kernel.PartyCollection;
import com.arsdigita.kernel.UserCollection;
import com.arsdigita.portation.Format; import com.arsdigita.portation.Format;
import com.arsdigita.portation.categories.core.Group.Group; import com.arsdigita.portation.categories.core.Group.Group;
import com.arsdigita.portation.categories.core.Group.GroupMarshaller; import com.arsdigita.portation.categories.core.Group.GroupMarshaller;