giacomo     2003/01/09 07:07:35

  Modified:    src/scratchpad/src/org/apache/cocoon/taglib/core
                        LoopTagSupport.java
  Log:
  make some method package protected instead of privat to increase performance by 
avoiding 'access emulated by a synthetic accessor method' (objected by eclipse)
  
  Revision  Changes    Path
  1.2       +3 -3      
xml-cocoon2/src/scratchpad/src/org/apache/cocoon/taglib/core/LoopTagSupport.java
  
  Index: LoopTagSupport.java
  ===================================================================
  RCS file: 
/home/cvs/xml-cocoon2/src/scratchpad/src/org/apache/cocoon/taglib/core/LoopTagSupport.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -d -b -u -r1.1 -r1.2
  --- LoopTagSupport.java       12 Jun 2002 16:48:42 -0000      1.1
  +++ LoopTagSupport.java       9 Jan 2003 15:07:35 -0000       1.2
  @@ -163,9 +163,9 @@
        */
       private LoopTagStatus status; // our LoopTagStatus
       private Object item; // the current item
  -    private int index; // the current internal index
  -    private int count; // the iteration count
  -    private boolean last; // current round == last one?
  +    int index; // the current internal index
  +    int count; // the iteration count
  +    boolean last; // current round == last one?
   
       //*********************************************************************
       // Constructor
  
  
  

----------------------------------------------------------------------
In case of troubles, e-mail:     [EMAIL PROTECTED]
To unsubscribe, e-mail:          [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to