From 10588f2bb7266aae725aa15ceaf80709f1d81404 Mon Sep 17 00:00:00 2001 From: Erwin Vervaet Date: Thu, 3 May 2007 07:51:11 +0000 Subject: [PATCH] Made sessionKey member final. --- .../conversation/impl/SessionBindingConversationManager.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/SessionBindingConversationManager.java b/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/SessionBindingConversationManager.java index 7712c919..d6b8c7ca 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/SessionBindingConversationManager.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/SessionBindingConversationManager.java @@ -50,7 +50,7 @@ public class SessionBindingConversationManager implements ConversationManager { * Generate a unique key for the session attribute holding the conversation * container managed by this conversation manager. */ - private String sessionKey = "webflow.conversation.container." + new RandomGuid().toString(); + private final String sessionKey = "webflow.conversation.container." + new RandomGuid().toString(); /** * The conversation uid generation strategy to use.