You are viewing a plain text version of this content. The canonical link for it is here.
Posted to jmeter-dev@jakarta.apache.org by se...@apache.org on 2004/06/11 13:04:45 UTC

cvs commit: jakarta-jmeter/src/components/org/apache/jmeter/assertions ResponseAssertion.java

sebb        2004/06/11 04:04:45

  Modified:    src/components/org/apache/jmeter/assertions Tag: rel-2_0
                        ResponseAssertion.java
  Log:
  Remove unused import; make some fields private
  
  Revision  Changes    Path
  No                   revision
  No                   revision
  1.16.2.3  +5 -6      jakarta-jmeter/src/components/org/apache/jmeter/assertions/ResponseAssertion.java
  
  Index: ResponseAssertion.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/components/org/apache/jmeter/assertions/ResponseAssertion.java,v
  retrieving revision 1.16.2.2
  retrieving revision 1.16.2.3
  diff -u -r1.16.2.2 -r1.16.2.3
  --- ResponseAssertion.java	3 Jun 2004 23:01:35 -0000	1.16.2.2
  +++ ResponseAssertion.java	11 Jun 2004 11:04:45 -0000	1.16.2.3
  @@ -22,7 +22,6 @@
   
   import org.apache.jmeter.samplers.SampleResult;
   import org.apache.jmeter.testelement.AbstractTestElement;
  -import org.apache.jmeter.testelement.property.BooleanProperty;
   import org.apache.jmeter.testelement.property.CollectionProperty;
   import org.apache.jmeter.testelement.property.IntegerProperty;
   import org.apache.jmeter.testelement.property.JMeterProperty;
  @@ -59,9 +58,9 @@
       * Mask values for TEST_TYPE
       * TODO: remove either MATCH or CONTAINS - they are mutually exckusive 
       */
  -   public final static int MATCH = 1 << 0;
  -   public final static int CONTAINS = 1 << 1;
  -   public final static int NOT = 1 << 2;
  +   private final static int MATCH = 1 << 0;
  +   private final static int CONTAINS = 1 << 1;
  +   private final static int NOT = 1 << 2;
   
      private static ThreadLocal matcher = new ThreadLocal()
      {
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: jmeter-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: jmeter-dev-help@jakarta.apache.org