if (cs != null && cs.length > 0) {
// first of all set to false.
result = false;
for (Object obj : cs) {
ProxyWeavingController c = (ProxyWeavingController) obj;
if (c.shouldWeave(wovenClass, this)) {
// exit as soon as we get told to weave, otherwise keep going.
return true;
}
}
}