Use notify() instead of notifyAll() in globalLock

This commit is contained in:
alena 2010-09-02 15:26:26 -07:00
parent c9b154def4
commit a6ec285114
1 changed files with 1 additions and 1 deletions

View File

@ -189,7 +189,7 @@ public class GlobalLock {
// release holding position in intern map when we released the DB connection
releaseRef();
notifyAll();
notify();
}
if(s_logger.isTraceEnabled())