Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [aspectj-users] @SuppressAjWarnings({"adviceDidNotMatch"})

That's a bug.  please open an issue.

cheers
Andy

On 24 February 2011 09:50, oliver <boehm@xxxxxxxxxx> wrote:
> Hello,
> to suppress "advice did not match" warnings I use the SuppressAjWarnings
> annotation in front of the advice:
>     @SuppressAjWarnings({"adviceDidNotMatch"})
>     Object around(RunParallel t) : parallelMethods() && @annotation(t) {
>         ...
>     }
> That's ok. But when I declare the aspect with "percflow" like
>     public aspect RunParallelAspect percflow(parallelMethods()) {
>         ...
>     }
> the warning will be not suppressed. Is this a (known) bug? Or should I raise
> a bug report for it?
> regards,
> Oliver
>
> _______________________________________________
> aspectj-users mailing list
> aspectj-users@xxxxxxxxxxx
> https://dev.eclipse.org/mailman/listinfo/aspectj-users
>
>


Back to the top