You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2016/03/04 23:46:49 UTC

svn commit: r1733671 - in /jmeter/trunk: src/protocol/http/org/apache/jmeter/protocol/http/modifier/ xdocs/

Author: pmouawad
Date: Fri Mar  4 22:46:48 2016
New Revision: 1733671

URL: http://svn.apache.org/viewvc?rev=1733671&view=rev
Log:
Bug 59095 - Remove UserParameterXMLParser that was deprecated 8 years ago
#resolve #150
Bugzilla Id: 59095

Removed:
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/UserParameterXMLContentHandler.java
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/UserParameterXMLErrorHandler.java
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/UserParameterXMLParser.java
Modified:
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/UserSequence.java
    jmeter/trunk/xdocs/changes.xml

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/UserSequence.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/UserSequence.java?rev=1733671&r1=1733670&r2=1733671&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/UserSequence.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/modifier/UserSequence.java Fri Mar  4 22:46:48 2016
@@ -31,8 +31,9 @@ import org.apache.log.Logger;
  * This module controls the Sequence in which user details are returned. This
  * module uses round robin allocation of users.
  *
- * @version $Revision$
+ * @deprecated No replacement as not used anymore in JMeter, will be dropped in next version after 3.0
  */
+@Deprecated
 public class UserSequence implements Serializable {
     private static final long serialVersionUID = 233L;
 

Modified: jmeter/trunk/xdocs/changes.xml
URL: http://svn.apache.org/viewvc/jmeter/trunk/xdocs/changes.xml?rev=1733671&r1=1733670&r2=1733671&view=diff
==============================================================================
--- jmeter/trunk/xdocs/changes.xml (original)
+++ jmeter/trunk/xdocs/changes.xml Fri Mar  4 22:46:48 2016
@@ -105,7 +105,14 @@ Summary
     <li>Since version 3.0, the support for reading old Avalon format JTL (result) files has been removed, see <bugzilla>59064</bugzilla></li>
     <li>Since version 3.0, default property's value <code>http.java.sampler.retries</code> has been switched to 0 (no retry by default) to align it on HttpClient4's behaviour. 
     Note also that its meaning has changed, before 3.0, <code>http.java.sampler.retries=1</code> meant No Retry, since 3.0 it is more litteral, <code>http.java.sampler.retries=1</code> means 1 retry.
-    See <bugzilla>59103</bugzilla></li>     
+    See <bugzilla>59103</bugzilla></li>
+    <li>Since 3.0, the following deprecated classes have been dropped
+    <ul>
+        <li>org.apache.jmeter.protocol.http.modifier.UserParameterXMLContentHandler</li>
+        <li>org.apache.jmeter.protocol.http.modifier.UserParameterXMLErrorHandler</li>
+        <li>org.apache.jmeter.protocol.http.modifier.UserParameterXMLParser</li>
+    </ul>
+    </li>
 </ul>
 
 <!-- =================== Improvements =================== -->
@@ -242,6 +249,7 @@ Summary
 <li><bug>59082</bug>Remove the "TestCompiler.useStaticSet" parameter. Contributed by Benoit Wiart (benoit dot wiart at gmail.com)</li>
 <li><bug>59093</bug>Option parsing error message can be 'lost'</li>
 <li><bug>58715</bug>Feature request: Bundle groovy-all with JMeter</li>
+<li><bug>59095</bug>Remove UserParameterXMLParser that was deprecated 8 years ago. Contributed by Benoit Wiart (benoit dot wiart at gmail.com)</li>
 </ul>
 <ch_section>Non-functional changes</ch_section>
 <ul>