Skip to content

Commit 3fdfdee

Browse files
author
Micha Kiener
committed
SPR-6419, manager implementation
1 parent 2f21e4a commit 3fdfdee

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

org.springframework.context/src/main/java/org/springframework/conversation/manager/ConversationManagerImpl.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,9 @@ public <T extends ConversationType> Conversation beginConversation(JoinMode join
285285
* @return the newly created conversation object
286286
*/
287287
protected MutableConversation createNewConversation() {
288-
return new ConversationImpl();
288+
ConversationImpl conversation = new ConversationImpl();
289+
conversation.setManager(this);
290+
return conversation;
289291
}
290292

291293
/**

0 commit comments

Comments
 (0)