-
Bug
-
Resolution: Done
-
Major
-
2.12.2.Final
-
None
The cdi-new-interceptor generates the following method :
private Object intercept(InvocationContext ic) throws Exception { try { return ic.proceed(); } finally { } }
It misses an @AroundInvoke
@AroundInvoke private Object intercept(InvocationContext ic) throws Exception { try { return ic.proceed(); } finally { } }