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

Gavin King gavin.king at jboss.com
Tue Oct 3 19:25:02 EDT 2006


  User: gavin   
  Date: 06/10/03 19:25:02

  Modified:    src/main/org/jboss/seam/contexts 
                        BusinessProcessContext.java
  Log:
  minor
  
  Revision  Changes    Path
  1.30      +2 -2      jboss-seam/src/main/org/jboss/seam/contexts/BusinessProcessContext.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: BusinessProcessContext.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/contexts/BusinessProcessContext.java,v
  retrieving revision 1.29
  retrieving revision 1.30
  diff -u -b -r1.29 -r1.30
  --- BusinessProcessContext.java	3 Oct 2006 23:15:58 -0000	1.29
  +++ BusinessProcessContext.java	3 Oct 2006 23:25:02 -0000	1.30
  @@ -27,7 +27,7 @@
    * @author <a href="mailto:theute at jboss.org">Thomas Heute</a>
    * @author <a href="mailto:steve at hibernate.org">Steve Ebersole</a>
    * @author Gavin King
  - * @version $Revision: 1.29 $
  + * @version $Revision: 1.30 $
    */
   public class BusinessProcessContext implements Context {
   
  @@ -90,6 +90,7 @@
   
      public String[] getNames() {
         Set<String> results = getNamesFromContext();
  +      results.removeAll(removals);
         results.addAll( additions.keySet() ); //after, to override
         return results.toArray(new String[]{});
      }
  @@ -109,7 +110,6 @@
         {
            results.addAll( taskInstance.getVariables().keySet() );
         }
  -      results.removeAll(removals);
         return results;
      }
   
  
  
  



More information about the jboss-cvs-commits mailing list