mirror of
https://github.com/spring-projects/spring-framework
synced 2026-06-08 17:33:33 +00:00
SPR-7463: switched to instance variable
This commit is contained in:
+1
-1
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user