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@eclipse.org
https://dev.eclipse.org/mailman/listinfo/aspectj-users

Reply via email to