]
Antonio Goncalves updated FORGE-2151:
-------------------------------------
Status: Pull Request Sent (was: Open)
Git Pull Request:
cdi-new-interceptor doesn't generate an @AroundInvoke on the
method
-------------------------------------------------------------------
Key: FORGE-2151
URL:
https://issues.jboss.org/browse/FORGE-2151
Project: Forge
Issue Type: Bug
Components: Java EE
Affects Versions: 2.12.2.Final
Reporter: Antonio Goncalves
Assignee: Antonio Goncalves
Fix For: 2.x Future
The {{cdi-new-interceptor}} generates the following method :
{code}
private Object intercept(InvocationContext ic) throws Exception
{
try
{
return ic.proceed();
}
finally
{
}
}
{code}
It misses an {{@AroundInvoke}}
{code}
@AroundInvoke
private Object intercept(InvocationContext ic) throws Exception
{
try
{
return ic.proceed();
}
finally
{
}
}
{code}