You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2013/07/07 04:43:48 UTC

svn commit: r1500357 - /jmeter/trunk/src/core/org/apache/jmeter/util/JSR223BeanInfoSupport.java

Author: sebb
Date: Sun Jul  7 02:43:48 2013
New Revision: 1500357

URL: http://svn.apache.org/r1500357
Log:
Variable spelling

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/util/JSR223BeanInfoSupport.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/util/JSR223BeanInfoSupport.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/util/JSR223BeanInfoSupport.java?rev=1500357&r1=1500356&r2=1500357&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/util/JSR223BeanInfoSupport.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/util/JSR223BeanInfoSupport.java Sun Jul  7 02:43:48 2013
@@ -40,8 +40,8 @@ public abstract class JSR223BeanInfoSupp
         final List<ScriptEngineFactory> engineFactories = sem.getEngineFactories();
         for(ScriptEngineFactory fact : engineFactories){
             List<String> names = fact.getNames();
-            for(String shorName : names) {
-                shortNames.add(shorName);
+            for(String shortName : names) {
+                shortNames.add(shortName);
             }
         }
         LANGUAGE_TAGS = shortNames.toArray(new String[shortNames.size()]);