You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ta...@apache.org on 2020/06/23 15:37:34 UTC

[myfaces] branch master updated: MYFACES-4346

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

tandraschko pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/master by this push:
     new b072add  MYFACES-4346
b072add is described below

commit b072addf17424ae707167d411dc929e7d628fae8
Author: Thomas Andraschko <ta...@apache.org>
AuthorDate: Tue Jun 23 17:37:25 2020 +0200

    MYFACES-4346
---
 .../org/apache/myfaces/renderkit/html/util/AjaxScriptBuilder.java     | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/impl/src/main/java/org/apache/myfaces/renderkit/html/util/AjaxScriptBuilder.java b/impl/src/main/java/org/apache/myfaces/renderkit/html/util/AjaxScriptBuilder.java
index 9630ab1..1ac187f 100644
--- a/impl/src/main/java/org/apache/myfaces/renderkit/html/util/AjaxScriptBuilder.java
+++ b/impl/src/main/java/org/apache/myfaces/renderkit/html/util/AjaxScriptBuilder.java
@@ -198,8 +198,6 @@ public class AjaxScriptBuilder
             }
             if ((params != null && !params.isEmpty()) || (uiParams != null && !uiParams.isEmpty()))
             {
-                appendProperty(sb, "params", "{", false);
-
                 if (params != null && !params.isEmpty())
                 {
                     if (params instanceof RandomAccess)
@@ -228,8 +226,6 @@ public class AjaxScriptBuilder
                         appendProperty(sb, param.getName(), param.getValue(), true);
                     }
                 }
-
-                sb.append('}');
             }
 
             sb.append('}');