HttpSessionIntegrationFilter no longer creates a HttpSession unnecessarily.

This commit is contained in:
Ben Alex
2005-02-10 07:15:20 +00:00
parent aa575f7103
commit cbe53e21b9
3 changed files with 6 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
/* Copyright 2004 Acegi Technology Pty Limited
/* Copyright 2004, 2005 Acegi Technology Pty Limited
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -314,7 +314,7 @@ public class MockHttpServletRequest implements HttpServletRequest {
}
public HttpSession getSession(boolean arg0) {
throw new UnsupportedOperationException("mock method not implemented");
return this.session;
}
public HttpSession getSession() {