Skip to main content

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

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


Back to the top