1
0
mirror of synced 2026-08-05 01:36:56 +00:00

Change SecurityContextHolder to ThreadLocal due to IBM JDK 1.3 issues as described at http://tinyurl.com/8zhka and reported by Scott McCrory on acegisecurity-developer 8 November 2005.

This commit is contained in:
Ben Alex
2005-11-08 22:07:33 +00:00
parent b938b6b363
commit c167e9fd87
2 changed files with 5 additions and 5 deletions
@@ -35,13 +35,13 @@ import org.springframework.util.Assert;
* @author Ben Alex
* @version $Id$
*
* @see java.lang.InheritableThreadLocal
* @see java.lang.ThreadLocal
* @see net.sf.acegisecurity.context.HttpSessionContextIntegrationFilter
*/
public class SecurityContextHolder {
//~ Static fields/initializers =============================================
private static InheritableThreadLocal contextHolder = new InheritableThreadLocal();
private static ThreadLocal contextHolder = new ThreadLocal();
//~ Methods ================================================================