sebb        2004/06/20 11:49:57

  Modified:    src/components/org/apache/jmeter/control
                        InterleaveControl.java
               src/protocol/http/org/apache/jmeter/protocol/http/sampler
                        AccessLogSampler.java
  Log:
  Make some fields transient
  
  Revision  Changes    Path
  1.25      +3 -3      
jakarta-jmeter/src/components/org/apache/jmeter/control/InterleaveControl.java
  
  Index: InterleaveControl.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/components/org/apache/jmeter/control/InterleaveControl.java,v
  retrieving revision 1.24
  retrieving revision 1.25
  diff -u -r1.24 -r1.25
  --- InterleaveControl.java    13 Feb 2004 01:31:55 -0000      1.24
  +++ InterleaveControl.java    20 Jun 2004 18:49:56 -0000      1.25
  @@ -37,7 +37,7 @@
       public static final int IGNORE_SUB_CONTROLLERS = 0;
       public static final int USE_SUB_CONTROLLERS = 1;
       private boolean skipNext;
  -    private TestElement searchStart = null;
  +    transient private TestElement searchStart = null;
       private boolean currentReturnedAtLeastOne;
       private boolean stillSame = true;
   
  
  
  
  1.14      +3 -3      
jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java
  
  Index: AccessLogSampler.java
  ===================================================================
  RCS file: 
/home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/sampler/AccessLogSampler.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- AccessLogSampler.java     8 Jun 2004 21:41:02 -0000       1.13
  +++ AccessLogSampler.java     20 Jun 2004 18:49:56 -0000      1.14
  @@ -73,7 +73,7 @@
      transient private LogParser PARSER = null;
      //NOTUSED private Class PARSERCLASS = null;
      private String logFile, parserClassName, filterClassName;
  -   private Filter filter;
  +   transient private Filter filter;
      private int count = 0;
   
      /**
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to