removedBindings = this.bindingCollection.remove(binds);
for (AdviceBinding removedBinding: removedBindings)
{
ArrayList<Advisor> ads = removedBinding.getAdvisors();
bindingAdvisors.addAll(ads);
Pointcut pointcut = removedBinding.getPointcut();
this.removePointcut(pointcut.getName());
}
}
Iterator<Advisor> it = bindingAdvisors.iterator();
while (it.hasNext())
{