[seam-commits] Seam SVN: r10027 - trunk/src/main/org/jboss/seam.
seam-commits at lists.jboss.org
seam-commits at lists.jboss.org
Mon Feb 9 17:14:17 EST 2009
Author: norman.richards at jboss.com
Date: 2009-02-09 17:14:17 -0500 (Mon, 09 Feb 2009)
New Revision: 10027
Modified:
trunk/src/main/org/jboss/seam/Component.java
Log:
JBSEAM-3936
Modified: trunk/src/main/org/jboss/seam/Component.java
===================================================================
--- trunk/src/main/org/jboss/seam/Component.java 2009-02-09 12:44:05 UTC (rev 10026)
+++ trunk/src/main/org/jboss/seam/Component.java 2009-02-09 22:14:17 UTC (rev 10027)
@@ -39,6 +39,7 @@
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
+import java.util.Collections;
import java.util.HashMap;
import java.util.HashSet;
import java.util.LinkedHashMap;
@@ -941,7 +942,7 @@
initDefaultInterceptors();
for ( Annotation annotation: getBeanClass().getAnnotations() )
- {
+ {
if ( annotation.annotationType().isAnnotationPresent(INTERCEPTORS) )
{
Class[] classes = value( annotation.annotationType().getAnnotation(INTERCEPTORS) );
@@ -955,7 +956,8 @@
}
newSort(interceptors);
-
+ newSort(clientSideInterceptors);
+
if ( log.isDebugEnabled() ) log.debug("interceptor stack: " + interceptors);
}
More information about the seam-commits
mailing list