1
0
mirror of synced 2026-08-05 09:47:05 +00:00

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
@@ -28,6 +28,6 @@ public class PortletAuthenticationDetails implements Serializable {
}
public String toString() {
return "User info: " + userInfo.toString();
return "User info: " + userInfo;
}
}