You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by jo...@apache.org on 2004/04/24 01:07:07 UTC

cvs commit: cocoon-2.1/src/blocks/javaflow/java/org/apache/cocoon/components/flow/java Continuation.java

joerg       2004/04/23 16:07:07

  Modified:    src/blocks/javaflow/java/org/apache/cocoon/components/flow/java
                        Continuation.java
  Log:
  clean up: removed private field Continuation parent as it is only needed in the constructor
  
  Revision  Changes    Path
  1.2       +1 -3      cocoon-2.1/src/blocks/javaflow/java/org/apache/cocoon/components/flow/java/Continuation.java
  
  Index: Continuation.java
  ===================================================================
  RCS file: /home/cvs/cocoon-2.1/src/blocks/javaflow/java/org/apache/cocoon/components/flow/java/Continuation.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- Continuation.java	29 Mar 2004 17:47:21 -0000	1.1
  +++ Continuation.java	23 Apr 2004 23:07:07 -0000	1.2
  @@ -27,7 +27,6 @@
    */
   public class Continuation {
       private ContinuationStack stack;
  -    private Continuation parent;
       private Object context;
   
       private static HashMap continuationsmap = new HashMap();
  @@ -51,7 +50,6 @@
               throw new NullPointerException("Parent continuation is null");
   
           stack = new ContinuationStack(parent.stack);
  -        this.parent = parent;
           this.context = context;
           restoring = true;
       }