Skip to content

Commit

Permalink
Remove uneeded check
Browse files Browse the repository at this point in the history
  • Loading branch information
pmuir committed Nov 24, 2010
1 parent d2f00a1 commit 53ce930
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -221,7 +221,7 @@ public boolean unlock()
private void verifyConversationContextActive()
{
ConversationContext ctx = getConversationContext();
if (ctx == null || !ctx.isActive())
if (ctx == null)
{
throw new ContextNotActiveException("Conversation Context not active when method called on conversation " + this);
}
Expand Down

0 comments on commit 53ce930

Please sign in to comment.