Logger.info( "signature %s matched ", methodName );
// get the wrapper
ExecutionWrapper curWrapper =
executionWrappers.get( completeSig );
// deinstall aspect
curWrapper.deinstall( advice );
// if this has been the last aspect, remove the wrapper
if( !curWrapper.hasAdvices() ) { // todo: configurable option
removeWrapper( methodIdx, completeSig );
executionWrappers.remove( completeSig );
}
}
else {