This is an automated email from the ASF dual-hosted git repository.

mbrohl pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 3f7776159d Improved: getPathInfoOnlyParameterMap should be public 
(OFBIZ-12842)
3f7776159d is described below

commit 3f7776159dc1285aeb054dbe5eaf5003449bf687
Author: Cheng Hu Shan <cheng-hu.s...@ecomify.de>
AuthorDate: Thu Jul 27 12:09:35 2023 +0200

    Improved: getPathInfoOnlyParameterMap should be public (OFBIZ-12842)
---
 framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java 
b/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java
index fb8d1b5663..3ba66da041 100644
--- a/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java
+++ b/framework/base/src/main/java/org/apache/ofbiz/base/util/UtilHttp.java
@@ -380,7 +380,7 @@ public final class UtilHttp {
      * @param pred the predicate filtering parameter names
      * @return a canonicalized parameter map.
      */
-    static Map<String, Object> getPathInfoOnlyParameterMap(String path, 
Predicate<String> pred) {
+    public static Map<String, Object> getPathInfoOnlyParameterMap(String path, 
Predicate<String> pred) {
         String path1 = Optional.ofNullable(path).orElse("");
         Map<String, List<String>> allParams = Arrays.stream(path1.split("/"))
                 .filter(segment -> segment.startsWith("~") && 
segment.contains("="))

Reply via email to