You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by pa...@apache.org on 2022/10/11 14:44:10 UTC

[myfaces] branch main updated: MYFACES-4475: remove space before closing >

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

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


The following commit(s) were added to refs/heads/main by this push:
     new d9957c070 MYFACES-4475: remove space before closing >
     new 5be3c0ff3 Merge pull request #335 from pnicolucci/MYFACES-4475
d9957c070 is described below

commit d9957c070d9ef4e427e8c5376b448dc19f72e43e
Author: Paul Nicolucci <pn...@gmail.com>
AuthorDate: Tue Oct 11 10:39:01 2022 -0400

    MYFACES-4475: remove space before closing >
---
 .../org/apache/myfaces/view/facelets/compiler/DoctypeInstruction.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/impl/src/main/java/org/apache/myfaces/view/facelets/compiler/DoctypeInstruction.java b/impl/src/main/java/org/apache/myfaces/view/facelets/compiler/DoctypeInstruction.java
index 2ab46efc4..cd47aeb11 100644
--- a/impl/src/main/java/org/apache/myfaces/view/facelets/compiler/DoctypeInstruction.java
+++ b/impl/src/main/java/org/apache/myfaces/view/facelets/compiler/DoctypeInstruction.java
@@ -65,7 +65,7 @@ public class DoctypeInstruction implements Instruction
             {
                 sb.append(" SYSTEM \"").append(systemId).append('"');
             }
-            sb.append(" >\n");
+            sb.append(">\n");
         }
         context.getResponseWriter().writeDoctype(sb.toString());
     }