The ThreadLocal in ExternalContextHolder is now final (SWF-262).

This commit is contained in:
Erwin Vervaet
2007-03-09 20:35:08 +00:00
parent 62ba6ecda4
commit 31427325a7
2 changed files with 4 additions and 1 deletions

View File

@@ -15,6 +15,9 @@ Package org.springframework.webflow.config
* Added Spring tooling funtionality to the BeanDefinitionParser to allow tools such as SpringIDE
to properly interact with it (SWF-254).
Package org.springframework.webflow.context
* The ThreadLocal in ExternalContextHolder is now final (SWF-262).
Package org.springframework.webflow.conversation
* The SessionBindingConversationManager now re-binds the ConversationContainer in the session
every time a contained conversation is unlocked (SWF-244).

View File

@@ -32,7 +32,7 @@ import org.springframework.util.Assert;
*/
public final class ExternalContextHolder {
private static ThreadLocal externalContextHolder = new ThreadLocal();
private static final ThreadLocal externalContextHolder = new ThreadLocal();
/**
* Associate the given ExternalContext with the current thread.