diff --git a/ccm-core/src/com/arsdigita/portation/categories/core/User/User.java b/ccm-core/src/com/arsdigita/portation/categories/core/User/User.java index 24c469a53..1eef93df3 100644 --- a/ccm-core/src/com/arsdigita/portation/categories/core/User/User.java +++ b/ccm-core/src/com/arsdigita/portation/categories/core/User/User.java @@ -39,7 +39,7 @@ public class User extends Party implements Identifiable { public User(com.arsdigita.kernel.User sysUser) { super(sysUser); - this.personName = sysUser.getPersonName().toString(); + this.personName = sysUser.getPersonName().toString(); //family and given name split this.screenName = sysUser.getScreenName(); this.groups = CollectionConverter.convertGroups(sysUser.getGroups()); } diff --git a/ccm-core/src/com/arsdigita/portation/cmd/CoreExport.java b/ccm-core/src/com/arsdigita/portation/cmd/CoreExport.java index fc60b0239..ed0e327f4 100644 --- a/ccm-core/src/com/arsdigita/portation/cmd/CoreExport.java +++ b/ccm-core/src/com/arsdigita/portation/cmd/CoreExport.java @@ -18,9 +18,6 @@ */ 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.categories.core.Group.Group; import com.arsdigita.portation.categories.core.Group.GroupMarshaller;