[seam-commits] Seam SVN: r7591 - trunk/src/main/org/jboss/seam/intercept.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Sat Mar 15 17:41:05 EDT 2008
Author: pete.muir at jboss.org
Date: 2008-03-15 17:41:04 -0400 (Sat, 15 Mar 2008)
New Revision: 7591
Modified:
trunk/src/main/org/jboss/seam/intercept/Interceptor.java
Log:
JBSEAM-2667
Modified: trunk/src/main/org/jboss/seam/intercept/Interceptor.java
===================================================================
--- trunk/src/main/org/jboss/seam/intercept/Interceptor.java 2008-03-15 12:13:42 UTC (rev 7590)
+++ trunk/src/main/org/jboss/seam/intercept/Interceptor.java 2008-03-15 21:41:04 UTC (rev 7591)
@@ -150,7 +150,7 @@
if ( annotation!=null && params.length==1 && params[0]==annotation.annotationType() )
{
annotationInjectorMethod = method;
- Reflections.invokeAndWrap(method, userInterceptorClass, annotation);
+ Reflections.invokeAndWrap(method, statelessUserInterceptorInstance, annotation);
}
//if there is a method that takes the component, call it
if ( params.length==1 && params[0]==Component.class )
More information about the seam-commits
mailing list