Skip to content

Commit 5109501

Browse files
author
David Syer
committed
SPR-7463: switched to instance variable
1 parent e27f4b1 commit 5109501

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

org.springframework.context/src/main/java/org/springframework/context/support/SimpleThreadScope.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public class SimpleThreadScope implements Scope {
4747

4848
private static final Log logger = LogFactory.getLog(SimpleThreadScope.class);
4949

50-
private static final ThreadLocal<Map<String, Object>> threadScope =
50+
private final ThreadLocal<Map<String, Object>> threadScope =
5151
new NamedThreadLocal<Map<String, Object>>("SimpleThreadScope") {
5252
@Override
5353
protected Map<String, Object> initialValue() {

0 commit comments

Comments
 (0)