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]
