if(hashCode==0){
Logger.debug("No call backs");
return;
}
Logger.debug("Hashcode is " + hashCode);
AbstractContext context = LockTable.pendingLocks.get(hashCode);
if(context==null){
System.out.println("Null context: " + hashCode);
return;
}
Logger.debug(context + " will notified");
synchronized (context) {
((Context)context).pendingLock = success;
context.notifyAll();
Logger.debug(context + " notified");
}
}