SEC-719: removed explicit toString() call to prevent NPE when userInfo is null
This commit is contained in:
parent
b78bd3ed4f
commit
2a0a041386
|
@ -28,6 +28,6 @@ public class PortletAuthenticationDetails implements Serializable {
|
|||
}
|
||||
|
||||
public String toString() {
|
||||
return "User info: " + userInfo.toString();
|
||||
return "User info: " + userInfo;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue