SPR-7463: switched to instance variable

This commit is contained in:
David Syer
2010-08-14 11:09:42 +00:00
parent e27f4b1577
commit 5109501d16

View File

@@ -47,7 +47,7 @@ public class SimpleThreadScope implements Scope {
private static final Log logger = LogFactory.getLog(SimpleThreadScope.class);
private static final ThreadLocal<Map<String, Object>> threadScope =
private final ThreadLocal<Map<String, Object>> threadScope =
new NamedThreadLocal<Map<String, Object>>("SimpleThreadScope") {
@Override
protected Map<String, Object> initialValue() {