You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by an...@apache.org on 2017/06/28 14:40:18 UTC

syncope git commit: [SYNCOPE-1125] fixed not visible memebership attribute values

Repository: syncope
Updated Branches:
  refs/heads/master 94708a3ee -> b4713c15f


[SYNCOPE-1125] fixed not visible memebership attribute values


Project: http://git-wip-us.apache.org/repos/asf/syncope/repo
Commit: http://git-wip-us.apache.org/repos/asf/syncope/commit/b4713c15
Tree: http://git-wip-us.apache.org/repos/asf/syncope/tree/b4713c15
Diff: http://git-wip-us.apache.org/repos/asf/syncope/diff/b4713c15

Branch: refs/heads/master
Commit: b4713c15f9ea28bb108ee2e82d986a8011586c43
Parents: 94708a3
Author: Andrea Patricelli <an...@apache.org>
Authored: Wed Jun 28 16:38:47 2017 +0200
Committer: Andrea Patricelli <an...@apache.org>
Committed: Wed Jun 28 16:40:01 2017 +0200

----------------------------------------------------------------------
 .../org/apache/syncope/client/console/wizards/any/PlainAttrs.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/syncope/blob/b4713c15/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
----------------------------------------------------------------------
diff --git a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
index 75ca3c4..bbb218c 100644
--- a/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
+++ b/client/console/src/main/java/org/apache/syncope/client/console/wizards/any/PlainAttrs.java
@@ -180,7 +180,7 @@ public class PlainAttrs extends AbstractAttrs<PlainSchemaTO> {
     protected void setAttrs(final MembershipTO membershipTO) {
         List<AttrTO> attrs = new ArrayList<>();
 
-        Map<String, AttrTO> attrMap = EntityTOUtils.buildAttrMap(anyTO.getPlainAttrs());
+        Map<String, AttrTO> attrMap = EntityTOUtils.buildAttrMap(membershipTO.getPlainAttrs());
 
         for (PlainSchemaTO schema : membershipSchemas.get(membershipTO.getGroupKey()).values()) {
             AttrTO attrTO = new AttrTO();