You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by mm...@apache.org on 2020/01/17 08:46:54 UTC

[syncope] branch 2_1_X updated: add group key to toString() for MembershipTO

This is an automated email from the ASF dual-hosted git repository.

mmoayyed pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/2_1_X by this push:
     new f3da8db  add group key to toString() for MembershipTO
f3da8db is described below

commit f3da8db81da8bddec9d3de96c29f4e0fddafc3f5
Author: Misagh Moayyed <mm...@gmail.com>
AuthorDate: Fri Jan 17 12:46:34 2020 +0400

    add group key to toString() for MembershipTO
---
 .../lib/src/main/java/org/apache/syncope/common/lib/to/MembershipTO.java | 1 +
 1 file changed, 1 insertion(+)

diff --git a/common/lib/src/main/java/org/apache/syncope/common/lib/to/MembershipTO.java b/common/lib/src/main/java/org/apache/syncope/common/lib/to/MembershipTO.java
index 3dde27a..361b40d 100644
--- a/common/lib/src/main/java/org/apache/syncope/common/lib/to/MembershipTO.java
+++ b/common/lib/src/main/java/org/apache/syncope/common/lib/to/MembershipTO.java
@@ -162,6 +162,7 @@ public class MembershipTO implements Serializable, AttributableTO {
     @Override
     public String toString() {
         return new ToStringBuilder(this, ToStringStyle.SIMPLE_STYLE).
+            append(this.groupKey).
             append(this.groupName).
             build();
     }