Removed blank
Signed-off-by: Michael Hausegger <hausegger.michael@googlemail.com>
This commit is contained in:
parent
e8f11d3c7e
commit
1e84a04682
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue