Author: mthl
Date: Fri Jul 19 14:22:34 2019
New Revision: 1863396
URL:
http://svn.apache.org/viewvc?rev=1863396&view=revLog:
Improved: Remove unused ‘UtilHttp#getParameterMap’ overload
(OFBIZ-11138)
Modified:
ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java
Modified: ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java
URL:
http://svn.apache.org/viewvc/ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java?rev=1863396&r1=1863395&r2=1863396&view=diff==============================================================================
--- ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java (original)
+++ ofbiz/ofbiz-framework/trunk/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java Fri Jul 19 14:22:34 2019
@@ -132,10 +132,6 @@ public final class UtilHttp {
return getParameterMap(request, null, null);
}
- public static Map<String, Object> getParameterMap(HttpServletRequest request, Set<? extends String> nameSet) {
- return getParameterMap(request, nameSet, null);
- }
-
/**
* Create a map from a HttpServletRequest (parameters) object
* @param onlyIncludeOrSkip If true only include, if false skip, the named parameters in the nameSet. If this is null and nameSet is not null, default to skip.