+ type.getName() + " matches: " + matching);
}
}
public boolean addDestructionCallback(final Object beanInstance, final DestructionCallback<?> destructionCallback) {
final CreationalContext creationalContext = creationalContextMap.get(beanInstance);
if (creationalContext == null) {
return false;
}
creationalContext.addDestructionCallback(beanInstance, destructionCallback);
return true;
}