Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Nov 13, 2010
1 parent 4b033ae commit ddd6f1b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Expand Up @@ -164,7 +164,7 @@ public boolean dissociate(R request)
{
/*
* If the session is available, store the conversation id generator and
* convertsations if necessary.
* conversations if necessary.
*/
if (getSessionAttribute(request, CONVERSATION_ID_GENERATOR_ATTRIBUTE_NAME, false) == null)
{
Expand Down Expand Up @@ -304,7 +304,8 @@ public void invalidate()
{
if (isExpired(conversation))
{
if (!conversation.isTransient()) {
if (!conversation.isTransient())
{
conversation.end();
}
}
Expand Down
Expand Up @@ -95,7 +95,7 @@ public boolean destroy(HttpSession session)
}
else
{
// In a request, with no coversations, so destroy now
// In a request, with no conversations, so destroy now
getConversationContext().destroy(session);
}
return false;
Expand Down

0 comments on commit ddd6f1b

Please sign in to comment.