Author: fschumacher
Date: Sun Mar 20 12:56:39 2016
New Revision: 1735870

URL: http://svn.apache.org/viewvc?rev=1735870&view=rev
Log:
Make setArguments final, as it is used from ctor.

Modified:
    
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java

Modified: 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
URL: 
http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java?rev=1735870&r1=1735869&r2=1735870&view=diff
==============================================================================
--- 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
 (original)
+++ 
jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java
 Sun Mar 20 12:56:39 2016
@@ -771,7 +771,8 @@ public abstract class HTTPSamplerBase ex
         return getPropertyAsString(PROXYPASS);
     }
 
-    public void setArguments(Arguments value) {
+    // gets called from ctor, so has to be final
+    public final void setArguments(Arguments value) {
         setProperty(new TestElementProperty(ARGUMENTS, value));
     }
 


Reply via email to