[jboss-cvs] jboss-seam/src/main/org/jboss/seam/core ...

Gavin King gavin.king at jboss.com
Mon Jun 18 02:49:29 EDT 2007


  User: gavin   
  Date: 07/06/18 02:49:29

  Modified:    src/main/org/jboss/seam/core  Pages.java
  Log:
  put the workaround back in, since the bug reappears in TC6
  
  Revision  Changes    Path
  1.131     +2 -2      jboss-seam/src/main/org/jboss/seam/core/Pages.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Pages.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Pages.java,v
  retrieving revision 1.130
  retrieving revision 1.131
  diff -u -b -r1.130 -r1.131
  --- Pages.java	15 Jun 2007 03:50:16 -0000	1.130
  +++ Pages.java	18 Jun 2007 06:49:29 -0000	1.131
  @@ -194,7 +194,7 @@
      private Page getCachedPage(String viewId)
      {
         Page result = pagesByViewId.get(viewId);
  -      /*if (result==null)
  +      if (result==null)
         {
            //workaround for what I believe is a bug in the JSF RI
            viewId = replaceExtension( viewId, getSuffix() );
  @@ -202,7 +202,7 @@
            {
               result = pagesByViewId.get(viewId);
            }
  -      }*/
  +      }
         return result;
      }
      
  
  
  



More information about the jboss-cvs-commits mailing list