removed confusing logging statement that implies a lock was being acquired when it wasnt

This commit is contained in:
Keith Donald
2007-05-01 22:32:28 +00:00
parent ae9aba4e49
commit a6f77271b8

View File

@@ -118,10 +118,6 @@ public abstract class AbstractConversationFlowExecutionRepository extends Abstra
}
public FlowExecutionLock getLock(FlowExecutionKey key) throws FlowExecutionRepositoryException {
if (logger.isDebugEnabled()) {
logger.debug("Getting lock for flow execution with key '" + key + "'");
}
// lock the entire conversation
return new ConversationBackedFlowExecutionLock(getConversation(key));
}