Make ConversationContainer.nextId() protected

Increase the visibility of ConversationContainer.nextId() to protected
so subclasses can override.

Issue: SWF-756
This commit is contained in:
Phillip Webb
2012-11-13 09:43:42 -08:00
parent 6f6e06294a
commit c85b63cce6

View File

@@ -107,7 +107,7 @@ public class ConversationContainer implements Serializable {
return conversation;
}
private ConversationId nextId() {
protected ConversationId nextId() {
return new SimpleConversationId(Integer.valueOf(++conversationIdSequence));
}