* Do not log concurrency conflicts. This is often misinterpreted as error which it is not.

This commit is contained in:
hns 2005-09-07 08:42:20 +00:00
parent 84751f86a6
commit 58a109b727

View file

@ -262,7 +262,7 @@ public final class Node implements INode, Serializable {
}
if ((lock != null) && (lock != current) && lock.isAlive() && lock.isActive()) {
nmgr.logEvent("Concurrency conflict for " + this + ", lock held by " + lock);
// nmgr.logEvent("Concurrency conflict for " + this + ", lock held by " + lock);
throw new ConcurrencyException("Tried to modify " + this +
" from two threads at the same time.");
}