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);


Reply via email to