SEC-719: removed explicit toString() call to prevent NPE when userInfo is null

This commit is contained in:
Luke Taylor 2008-03-19 16:15:45 +00:00
parent b78bd3ed4f
commit 2a0a041386

View File

@ -28,6 +28,6 @@ public class PortletAuthenticationDetails implements Serializable {
} }
public String toString() { public String toString() {
return "User info: " + userInfo.toString(); return "User info: " + userInfo;
} }
} }