Make ConversationContainer.nextId() protected
Increase the visibility of ConversationContainer.nextId() to protected so subclasses can override. Issue: SWF-756
This commit is contained in:
@@ -107,7 +107,7 @@ public class ConversationContainer implements Serializable {
|
||||
return conversation;
|
||||
}
|
||||
|
||||
private ConversationId nextId() {
|
||||
protected ConversationId nextId() {
|
||||
return new SimpleConversationId(Integer.valueOf(++conversationIdSequence));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user