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

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


The following commit(s) were added to refs/heads/release24.09 by this push:
     new 87bae9e1c2 Fixed: Invalid characters encountered (OFBIZ-13325)
87bae9e1c2 is described below

commit 87bae9e1c23e93f67af40e0127a71b4a896294ab
Author: Jacques Le Roux <[email protected]>
AuthorDate: Tue Dec 9 09:09:02 2025 +0100

    Fixed: Invalid characters encountered (OFBIZ-13325)
    
    Noticed during code analysis with SonarQube:
    Invalid character encountered in file ConfigXMLReader.java at line 407 for
    encoding UTF-8.
    
    This fixes the file content
    
    Thanks: David Maksimovic for report
    
    # Conflict handled by hand in ConfigXMLReader.java
---
 .../src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java
 
b/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java
index d6a16d3856..82b0d3e855 100644
--- 
a/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java
+++ 
b/framework/webapp/src/main/java/org/apache/ofbiz/webapp/control/ConfigXMLReader.java
@@ -404,7 +404,8 @@ public final class ConfigXMLReader {
         }
 
         /**
-         * XXX: Keep it for backward compatibility until moving everything to 
鈥榞etRequestMapMultiMap鈥�.  @return the request map map
+         * XXX: Keep it for backward compatibility until moving everything to 
getRequestMapMultiMap.
+         *   @return the request map
          */
         public Map<String, RequestMap> getRequestMapMap() {
             return new MultivaluedMapContextAdapter<>(getRequestMapMultiMap());

Reply via email to