From c85b63cce6baefb775db993ea2a569530d260359 Mon Sep 17 00:00:00 2001 From: Phillip Webb Date: Tue, 13 Nov 2012 09:43:42 -0800 Subject: [PATCH] Make ConversationContainer.nextId() protected Increase the visibility of ConversationContainer.nextId() to protected so subclasses can override. Issue: SWF-756 --- .../webflow/conversation/impl/ConversationContainer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/ConversationContainer.java b/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/ConversationContainer.java index 51284cfa..3ebdb462 100644 --- a/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/ConversationContainer.java +++ b/spring-webflow/src/main/java/org/springframework/webflow/conversation/impl/ConversationContainer.java @@ -107,7 +107,7 @@ public class ConversationContainer implements Serializable { return conversation; } - private ConversationId nextId() { + protected ConversationId nextId() { return new SimpleConversationId(Integer.valueOf(++conversationIdSequence)); }