importorg.aspectj.lang.annotation.*;publicaspectA2{before():execution(*foo(..)){// wont match}@SuppressAjWarningsbefore():execution(*foo(..)){// wont match - but suppressed}@SuppressAjWarnings("Bananas")// this wont prevent the lint advice not match warningbefore():execution(*foo(..)){// wont match}}