Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGreg Wilkins2012-08-19 23:23:47 +0000
committerGreg Wilkins2012-08-19 23:23:47 +0000
commit4f30fb17a61b223e90d02efe2bfa03cc9e37efac (patch)
tree16cb15b941c47bda7a0a35071e22c27016267590 /jetty-security/src/main
parent4ff7ae610650c503814556742f9ea700c5953b07 (diff)
downloadorg.eclipse.jetty.project-4f30fb17a61b223e90d02efe2bfa03cc9e37efac.tar.gz
org.eclipse.jetty.project-4f30fb17a61b223e90d02efe2bfa03cc9e37efac.tar.xz
org.eclipse.jetty.project-4f30fb17a61b223e90d02efe2bfa03cc9e37efac.zip
jetty-9 removed debugs
Diffstat (limited to 'jetty-security/src/main')
-rw-r--r--jetty-security/src/main/java/org/eclipse/jetty/security/authentication/FormAuthenticator.java1
-rw-r--r--jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginAuthenticator.java2
2 files changed, 0 insertions, 3 deletions
diff --git a/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/FormAuthenticator.java b/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/FormAuthenticator.java
index 57587e12b4..effd4f7c05 100644
--- a/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/FormAuthenticator.java
+++ b/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/FormAuthenticator.java
@@ -201,7 +201,6 @@ public class FormAuthenticator extends LoginAuthenticator
return _deferred;
HttpSession session = request.getSession(true);
- System.err.println(session.getId()+((HashedSession)session).getAttributeMap());
try
{
diff --git a/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginAuthenticator.java b/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginAuthenticator.java
index a1f0501f78..aefd171814 100644
--- a/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginAuthenticator.java
+++ b/jetty-security/src/main/java/org/eclipse/jetty/security/authentication/LoginAuthenticator.java
@@ -80,10 +80,8 @@ public abstract class LoginAuthenticator implements Authenticator
//(indicated by SESSION_SECURED not being set on the session) then we should change id
if (_renewSession && httpSession!=null && httpSession.getAttribute(AbstractSessionManager.SESSION_KNOWN_ONLY_TO_AUTHENTICATED)!=Boolean.TRUE)
{
- System.err.println(((HashedSession)httpSession).getAttributeMap());
HttpSession newSession = AbstractSessionManager.renewSession(request, httpSession,true);
LOG.debug("renew {}->{}",httpSession.getId(),newSession.getId());
- System.err.println(((HashedSession)newSession).getAttributeMap());
httpSession=newSession;
}
return httpSession;

Back to the top