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

Gavin King gavin.king at jboss.com
Wed Nov 15 17:12:17 EST 2006


  User: gavin   
  Date: 06/11/15 17:12:17

  Modified:    src/main/org/jboss/seam/contexts  WebSessionContext.java
  Log:
  JBSEAM-409
  
  Revision  Changes    Path
  1.25      +2 -2      jboss-seam/src/main/org/jboss/seam/contexts/WebSessionContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: WebSessionContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/WebSessionContext.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -b -r1.24 -r1.25
  --- WebSessionContext.java	15 Oct 2006 21:51:59 -0000	1.24
  +++ WebSessionContext.java	15 Nov 2006 22:12:17 -0000	1.25
  @@ -16,7 +16,7 @@
   /**
    * @author Gavin King
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
  - * @version $Revision: 1.24 $
  + * @version $Revision: 1.25 $
    */
   public class WebSessionContext implements Context 
   {
  @@ -74,7 +74,7 @@
         String prefix = ScopeType.CONVERSATION.getPrefix();
         while ( names.hasMoreElements() ) {
            String name = (String) names.nextElement();
  -         if ( !name.startsWith(prefix) )
  +         if ( !name.contains(prefix) )
            {
               results.add(name);
               //results.add( name.substring(prefix.length()) );
  
  
  



More information about the jboss-cvs-commits mailing list