[seam-commits] Seam SVN: r10600 - branches/community/Seam_2_1/src/main/org/jboss/seam/intercept.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Wed Apr 22 20:41:03 EDT 2009


Author: shane.bryzak at jboss.com
Date: 2009-04-22 20:41:03 -0400 (Wed, 22 Apr 2009)
New Revision: 10600

Modified:
   branches/community/Seam_2_1/src/main/org/jboss/seam/intercept/RootInterceptor.java
Log:
JBSEAM-4143

Modified: branches/community/Seam_2_1/src/main/org/jboss/seam/intercept/RootInterceptor.java
===================================================================
--- branches/community/Seam_2_1/src/main/org/jboss/seam/intercept/RootInterceptor.java	2009-04-23 00:37:40 UTC (rev 10599)
+++ branches/community/Seam_2_1/src/main/org/jboss/seam/intercept/RootInterceptor.java	2009-04-23 00:41:03 UTC (rev 10600)
@@ -202,23 +202,7 @@
             getComponent().isInterceptionEnabled() &&
             !isBypassed(method) &&
             !isClearDirtyMethod(method, bean);
-      
-      if (componentName.equals("hotelSearch") && method !=null) { 
-          System.out.println("*********** BYPASS?[" + res + "] " + componentName + ":" + method);
-          System.out.println("-" + method.isAnnotationPresent(BypassInterceptors.class));
-          if (method.getName().equals("hashCode")) {
-              
-              try {
-              System.out.println("*A " + bean.getClass().getMethod("hashCode"));
-              
-              System.out.println("*B " + bean.getClass().getDeclaredMethod("hashCode"));
-              } catch (Exception e) {}
 
-              return false;
-          }
-
-      }
-
       return res;
    }
 




More information about the seam-commits mailing list