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 2022/08/30 11:16:29 UTC

[myfaces] branch main updated: Fix missing spaces in string literals (#294)

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

tandraschko 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 078363343 Fix missing spaces in string literals (#294)
078363343 is described below

commit 078363343c3d56b5b93a66792a4b38e2b080dd25
Author: Piotrek Żygieło <11...@users.noreply.github.com>
AuthorDate: Tue Aug 30 13:16:25 2022 +0200

    Fix missing spaces in string literals (#294)
    
    Co-authored-by: Piotrek Żygieło <pz...@users.noreply.github.com>
---
 impl/src/main/java/org/apache/myfaces/application/ViewIdSupport.java  | 2 +-
 .../main/java/org/apache/myfaces/context/FacesContextFactoryImpl.java | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/impl/src/main/java/org/apache/myfaces/application/ViewIdSupport.java b/impl/src/main/java/org/apache/myfaces/application/ViewIdSupport.java
index 18e3782a5..e5b6d7363 100644
--- a/impl/src/main/java/org/apache/myfaces/application/ViewIdSupport.java
+++ b/impl/src/main/java/org/apache/myfaces/application/ViewIdSupport.java
@@ -226,7 +226,7 @@ public class ViewIdSupport
                         if (mapping == null)
                         {
                             throw new IllegalStateException(
-                                    "No generic (either prefix or suffix) servlet-mapping found for FacesServlet."
+                                    "No generic (either prefix or suffix) servlet-mapping found for FacesServlet. "
                                     + "This is required serve views, that are not exact mapped.");
                         }
                     }
diff --git a/impl/src/main/java/org/apache/myfaces/context/FacesContextFactoryImpl.java b/impl/src/main/java/org/apache/myfaces/context/FacesContextFactoryImpl.java
index 0d89b8cd7..3ae31d0b8 100755
--- a/impl/src/main/java/org/apache/myfaces/context/FacesContextFactoryImpl.java
+++ b/impl/src/main/java/org/apache/myfaces/context/FacesContextFactoryImpl.java
@@ -94,7 +94,7 @@ public class FacesContextFactoryImpl extends FacesContextFactory implements Rele
             // It could happen, but we can ignore it.
             if (log.isLoggable(Level.FINE))
             {
-                log.log(Level.FINE, "Cannot access field firstInstance"
+                log.log(Level.FINE, "Cannot access field firstInstance "
                         + "from _MyFacesExternalContextHelper ", e);
             }
         }
@@ -102,7 +102,7 @@ public class FacesContextFactoryImpl extends FacesContextFactory implements Rele
         {
             if (log.isLoggable(Level.SEVERE))
             {
-                log.log(Level.SEVERE, "Cannot find field firstInstance"
+                log.log(Level.SEVERE, "Cannot find field firstInstance "
                         + "from _MyFacesExternalContextHelper ", e);
             }
         }