Author: maschmid
Date: 2012-08-17 07:30:51 -0400 (Fri, 17 Aug 2012)
New Revision: 15056

Modified:
   
branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/Component.java
Log:
JBSEAM-5006 fix


Modified: 
branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/Component.java
===================================================================
--- 
branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/Component.java
  2012-08-16 14:13:24 UTC (rev 15055)
+++ 
branches/community/Seam_2_3/jboss-seam/src/main/java/org/jboss/seam/Component.java
  2012-08-17 11:30:51 UTC (rev 15056)
@@ -315,7 +315,7 @@
          log.warn("Interceptors are disabled for @Synchronized component - 
synchronization will be disabled for: " + name);
       }
       
-      if (hasAnnotation && type != ComponentType.STATEFUL_SESSION_BEAN)
+      if (hasAnnotation && type == ComponentType.STATEFUL_SESSION_BEAN)
       {
          log.warn("Seam synchronization interceptor is disabled for 
@Synchronized @Stateful component - Seam synchronization will be disabled for: 
" + name);
       }

_______________________________________________
seam-commits mailing list
[email protected]
https://lists.jboss.org/mailman/listinfo/seam-commits

Reply via email to