svn commit: r1226924 - /ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/actions/calendar/CreateUrlParam.groovy

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

svn commit: r1226924 - /ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/actions/calendar/CreateUrlParam.groovy

adrianc
Author: adrianc
Date: Tue Jan  3 19:16:25 2012
New Revision: 1226924

URL: http://svn.apache.org/viewvc?rev=1226924&view=rev
Log:
Small fixup for my previous commit.

Modified:
    ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/actions/calendar/CreateUrlParam.groovy

Modified: ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/actions/calendar/CreateUrlParam.groovy
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/actions/calendar/CreateUrlParam.groovy?rev=1226924&r1=1226923&r2=1226924&view=diff
==============================================================================
--- ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/actions/calendar/CreateUrlParam.groovy (original)
+++ ofbiz/trunk/applications/workeffort/webapp/workeffort/WEB-INF/actions/calendar/CreateUrlParam.groovy Tue Jan  3 19:16:25 2012
@@ -28,7 +28,6 @@ if (urlParameterNames == null) {
 StringBuilder sb = new StringBuilder();
 for (entry in parameters.entrySet()) {
     if (urlParameterNames.contains(entry.getKey())) {
-        Debug.logInfo("Adding parameter " + entry.getKey(), "CreateUrlParam");
         sb.append("&").append(entry.getKey()).append("=").append(entry.getValue());
     }
 }