Removed blank

Signed-off-by: Michael Hausegger <hausegger.michael@googlemail.com>
This commit is contained in:
Michael Hausegger 2019-05-20 16:57:18 +02:00 committed by Greg Wilkins
parent e8f11d3c7e
commit 1e84a04682
1 changed files with 1 additions and 1 deletions

View File

@ -725,7 +725,7 @@ public class SessionHandler extends ScopedHandler
if (isUsingCookies())
{
String sessionPath = (_cookieConfig.getPath()==null) ? contextPath : _cookieConfig.getPath();
sessionPath = (sessionPath==null|| sessionPath.isEmpty()) ? "/" : sessionPath;
sessionPath = (sessionPath==null||sessionPath.isEmpty()) ? "/" : sessionPath;
String id = getExtendedId(session);
HttpCookie cookie = null;
if (_sessionComment == null)