svn commit: r741900 - /ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r741900 - /ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java

jleroux@apache.org
Author: jleroux
Date: Sat Feb  7 14:18:52 2009
New Revision: 741900

URL: http://svn.apache.org/viewvc?rev=741900&view=rev
Log:
Fix a cut/paste typo

Modified:
    ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java

Modified: ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java?rev=741900&r1=741899&r2=741900&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java (original)
+++ ofbiz/trunk/framework/base/src/org/ofbiz/base/util/UtilHttp.java Sat Feb  7 14:18:52 2009
@@ -235,7 +235,7 @@
             } else if (paramEntry.getValue() instanceof Collection) {
                 List<String> newList = FastList.newInstance();
                 for (String listEntry: ((Collection<String>) paramEntry.getValue())) {
-                    newList.add(canonicalizeParameter((String) paramEntry.getValue()));
+                    newList.add(canonicalizeParameter((String) listEntry));
                 }
                 paramEntry.setValue(newList);
             }