From 1e84a04682dc6c5f62d32514e33f788cf3427cd7 Mon Sep 17 00:00:00 2001 From: Michael Hausegger Date: Mon, 20 May 2019 16:57:18 +0200 Subject: [PATCH] Removed blank Signed-off-by: Michael Hausegger --- .../java/org/eclipse/jetty/server/session/SessionHandler.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jetty-server/src/main/java/org/eclipse/jetty/server/session/SessionHandler.java b/jetty-server/src/main/java/org/eclipse/jetty/server/session/SessionHandler.java index 2ad2005ec2d..a3f74e63807 100644 --- a/jetty-server/src/main/java/org/eclipse/jetty/server/session/SessionHandler.java +++ b/jetty-server/src/main/java/org/eclipse/jetty/server/session/SessionHandler.java @@ -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)