No, that is a separate issue, I'm not sure what causes it. [I find the behaviour useful - sometimes.]
S. >-----Original Message----- >From: Boylan, Crispin [mailto:[EMAIL PROTECTED] >Sent: 27 February 2004 12:00 >To: 'JMeter Developers List' >Subject: RE: cvs commit: >jakarta-jmeter/src/core/org/apache/jmeter/testele ment/property >AbstractProperty.java > > >Hi >Will this also fix the behaviour of creating a new User Parameters item >resulting in one that still contains parameters from the previous user >parameters item? > >Cheers >CRis. > >-----Original Message----- >From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >Sent: 27 February 2004 11:46 >To: [EMAIL PROTECTED] >Subject: cvs commit: >jakarta-jmeter/src/core/org/apache/jmeter/testelement/property >AbstractProperty.java > > >sebb 2004/02/27 03:45:54 > > Modified: src/core/org/apache/jmeter/testelement/property > AbstractProperty.java > Log: > Revert toString behaviour > > Revision Changes Path > 1.19 +7 -6 >jakarta-jmeter/src/core/org/apache/jmeter/testelement/property/ >AbstractPrope >rty.java > > Index: AbstractProperty.java > =================================================================== > RCS file: >/home/cvs/jakarta-jmeter/src/core/org/apache/jmeter/testelement >/property/Abs >tractProperty.java,v > retrieving revision 1.18 > retrieving revision 1.19 > diff -u -r1.18 -r1.19 > --- AbstractProperty.java 26 Feb 2004 00:51:07 -0000 1.18 > +++ AbstractProperty.java 27 Feb 2004 11:45:54 -0000 1.19 > @@ -427,13 +427,14 @@ > } > > /** > - * Provides a string representation of the property. > + * Provides the string representation of the property. > * > - * @return a string consisting of the name and its value > + * @return the string value > */ > public String toString() > { > - return name + "=" + getStringValue(); > + // N.B. Other classes rely on this returning >just the string. > + return getStringValue(); > } > > /* (non-Javadoc) > > > > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] > >This e-mail and any attachment is for authorised use by the >intended recipient(s) only. It may contain proprietary >material, confidential information and/or be subject to legal >privilege. It should not be copied, disclosed to, retained or >used by, any other party. If you are not an intended recipient >then please promptly delete this e-mail and any attachment and >all copies and inform the sender. Thank you. > >--------------------------------------------------------------------- >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] > ___________________________________________________________________________ This e-mail and the documents attached are confidential and intended solely for the addressee; it may also be privileged. If you receive this e-mail in error, please notify the sender immediately and destroy it. As its integrity cannot be secured on the Internet, the Atos Origin group liability cannot be triggered for the message content. Although the sender endeavours to maintain a computer virus-free network, the sender does not warrant that this transmission is virus-free and will not be liable for any damages resulting from any virus transmitted. ___________________________________________________________________________ --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
