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/12 23:03:35 UTC

[myfaces] branch 2.3.x 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 2.3.x
in repository https://gitbox.apache.org/repos/asf/myfaces.git


The following commit(s) were added to refs/heads/2.3.x by this push:
     new 4bf88acf7 MYFACES-4475: remove space before closing >
     new d5c14f8fc Merge pull request #339 from pnicolucci/MYFACES-4475-23
4bf88acf7 is described below

commit 4bf88acf79acd6c34b43482e124baeea603491c1
Author: Paul Nicolucci <pn...@gmail.com>
AuthorDate: Wed Oct 12 15:50:26 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 ecef3e32e..1073f7974 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
@@ -67,7 +67,7 @@ public class DoctypeInstruction implements Instruction
             {
                 sb.append(" SYSTEM \"").append(systemId).append("\"");
             }
-            sb.append(" >\n");
+            sb.append(">\n");
         }
         context.getResponseWriter().writeDoctype(sb.toString());
     }