Author: adrianc
Date: Thu Oct 24 01:46:56 2013
New Revision: 1535260

URL: http://svn.apache.org/r1535260
Log:
Eliminated a logged warning in OfbizUrlBuilder - the request-map might not 
exist because of the various URL rewriting schemes in OFBiz.

Modified:
    ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/OfbizUrlBuilder.java

Modified: ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/OfbizUrlBuilder.java
URL: 
http://svn.apache.org/viewvc/ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/OfbizUrlBuilder.java?rev=1535260&r1=1535259&r2=1535260&view=diff
==============================================================================
--- ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/OfbizUrlBuilder.java 
(original)
+++ ofbiz/trunk/framework/webapp/src/org/ofbiz/webapp/OfbizUrlBuilder.java Thu 
Oct 24 01:46:56 2013
@@ -166,9 +166,6 @@ public final class OfbizUrlBuilder {
                 buffer.append(":").append(webSiteProps.getHttpPort());
             }
         }
-        if (Debug.warningOn() && requestMap == null) {
-            Debug.logWarning("The request-map URI '" + requestMapUri + "' was 
not found in controller.xml", module);
-        }
         return makeSecure;
     }
 


Reply via email to