Skip to content
Snippets Groups Projects
Commit e9ea10de authored by gnaegi's avatar gnaegi
Browse files

OO-3478 anonymise Identity.toString method

parent fd7dc699
No related branches found
No related tags found
No related merge requests found
...@@ -196,6 +196,6 @@ public class IdentityImpl implements Identity, IdentityRef, CreateInfo, Persista ...@@ -196,6 +196,6 @@ public class IdentityImpl implements Identity, IdentityRef, CreateInfo, Persista
*/ */
@Override @Override
public String toString() { public String toString() {
return "Identity[name=" + name + "], " + super.toString(); return "Identity[key=" + key + "], " + super.toString();
} }
} }
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment