You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2016/03/20 12:28:11 UTC

svn commit: r1735865 - /jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/sampler/HTTPSamplerBase.java

Author: fschumacher
Date: Sun Mar 20 11:28:10 2016
New Revision: 1735865

URL: http://svn.apache.org/viewvc?rev=1735865&view=rev
Log:
Renamed local variable. Patch by Graham Russell.

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=1735865&r1=1735864&r2=1735865&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 11:28:10 2016
@@ -316,9 +316,9 @@ public abstract class HTTPSamplerBase ex
                 log.error("Cannot find .className property for " + parser+", ensure you set property:'" + parser + ".className'");
                 continue;
             }
-            String typelist = JMeterUtils.getProperty(parser + ".types");//$NON-NLS-1$
-            if (typelist != null) {
-                String[] types = JOrphanUtils.split(typelist, " ", true);
+            String typeList = JMeterUtils.getProperty(parser + ".types");//$NON-NLS-1$
+            if (typeList != null) {
+                String[] types = JOrphanUtils.split(typeList, " ", true);
                 for (final String type : types) {
                     log.info("Parser for " + type + " is " + classname);
                     PARSERS_FOR_CONTENT_TYPE.put(type, classname);