{
TLongObjectHashMap calledCons = (TLongObjectHashMap) calledClassesMap.get(constructor.getDeclaringClass().getName());
if (calledCons != null)
{
//CallerConstructorInfo info = (CallerConstructorInfo) calledCons.get(calledHash);
ConByMethodInfo info = (ConByMethodInfo) calledCons.get(calledHash);
if (info != null && info.hasAdvices())
{
//return advisor.invokeConCalledByMethod(callingMethodHash, args, info, inv.getCallingObject());
return advisor.invokeConCalledByMethod(info, inv.getCallingObject(), args);
}
}