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/01/07 01:23:22 UTC

cvs commit: jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control Cookie.java

sebb        2004/01/06 16:23:22

  Modified:    src/protocol/http/org/apache/jmeter/protocol/http/control
                        Cookie.java
  Log:
  Make compliant with JDK1.3
  
  Revision  Changes    Path
  1.9       +2 -1      jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control/Cookie.java
  
  Index: Cookie.java
  ===================================================================
  RCS file: /home/cvs/jakarta-jmeter/src/protocol/http/org/apache/jmeter/protocol/http/control/Cookie.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- Cookie.java	19 Oct 2003 22:43:51 -0000	1.8
  +++ Cookie.java	7 Jan 2004 00:23:22 -0000	1.9
  @@ -60,6 +60,7 @@
   import org.apache.jmeter.testelement.AbstractTestElement;
   import org.apache.jmeter.testelement.property.BooleanProperty;
   import org.apache.jmeter.testelement.property.LongProperty;
  +import org.apache.jorphan.util.JOrphanUtils;
   
   /**
    * This class is a Cookie encapsulator.
  @@ -209,7 +210,7 @@
               + "\tTRUE\t"
               + getPath()
               + "\t"
  -            + Boolean.valueOf(getSecure()).toString().toUpperCase()
  +            + JOrphanUtils.booleanToSTRING(getSecure())
               + "\t"
               + getExpires()
               + "\t"
  
  
  

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