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

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


The following commit(s) were added to refs/heads/master by this push:
     new 424af4b  minor fix - typo in Skipping deployment error messages
424af4b is described below

commit 424af4bb7285b806d3e3efe5020cd3e440e0a4ff
Author: Romain Manni-Bucau <rmannibu...@gmail.com>
AuthorDate: Sun Nov 21 17:46:49 2021 +0100

    minor fix - typo in Skipping deployment error messages
---
 .../java/org/apache/webbeans/config/BeansDeployer.java     | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git 
a/webbeans-impl/src/main/java/org/apache/webbeans/config/BeansDeployer.java 
b/webbeans-impl/src/main/java/org/apache/webbeans/config/BeansDeployer.java
index 408bf16..bd079f5 100644
--- a/webbeans-impl/src/main/java/org/apache/webbeans/config/BeansDeployer.java
+++ b/webbeans-impl/src/main/java/org/apache/webbeans/config/BeansDeployer.java
@@ -518,11 +518,11 @@ public class BeansDeployer
                 }
                 catch (NoClassDefFoundError ncdfe)
                 {
-                    logger.info("Skipping deployment of Class " + beanClass + 
"due to a NoClassDefFoundError: " + ncdfe.getMessage());
+                    logger.info("Skipping deployment of Class " + beanClass + 
" due to a NoClassDefFoundError: " + ncdfe.getMessage());
                 }
                 catch (UnsatisfiedLinkError ule)
                 {
-                    logger.info("Skipping deployment of Class " + beanClass + 
"due to a UnsatisfiedLinkError: " + ule.getMessage());
+                    logger.info("Skipping deployment of Class " + beanClass + 
" due to a UnsatisfiedLinkError: " + ule.getMessage());
                 }
             }
 
@@ -1416,11 +1416,11 @@ public class BeansDeployer
                 }
                 catch (NoClassDefFoundError ncdfe)
                 {
-                    logger.info("Skipping deployment of Class " + implClass + 
"due to a NoClassDefFoundError: " + ncdfe.getMessage());
+                    logger.info("Skipping deployment of Class " + implClass + 
" due to a NoClassDefFoundError: " + ncdfe.getMessage());
                 }
                 catch (UnsatisfiedLinkError ule)
                 {
-                    logger.info("Skipping deployment of Class " + implClass + 
"due to a UnsatisfiedLinkError: " + ule.getMessage());
+                    logger.info("Skipping deployment of Class " + implClass + 
" due to a UnsatisfiedLinkError: " + ule.getMessage());
                 }
             }
         }
@@ -1590,11 +1590,11 @@ public class BeansDeployer
                 }
                 catch (NoClassDefFoundError ncdfe)
                 {
-                    logger.info("Skipping deployment of Class " + 
key.getJavaClass() + "due to a NoClassDefFoundError: " + ncdfe.getMessage());
+                    logger.info("Skipping deployment of Class " + 
key.getJavaClass() + " due to a NoClassDefFoundError: " + ncdfe.getMessage());
                 }
                 catch (UnsatisfiedLinkError ule)
                 {
-                    logger.info("Skipping deployment of Class " + 
key.getJavaClass() + "due to a UnsatisfiedLinkError: " + ule.getMessage());
+                    logger.info("Skipping deployment of Class " + 
key.getJavaClass() + " due to a UnsatisfiedLinkError: " + ule.getMessage());
                 }
 
                 // if the implClass already gets processed as part of the
@@ -1643,7 +1643,7 @@ public class BeansDeployer
             }
             catch (UnsatisfiedLinkError ule)
             {
-                logger.info("Skipping deployment of Class " + beanClass + "due 
to a UnsatisfiedLinkError: " + ule.getMessage());
+                logger.info("Skipping deployment of Class " + beanClass + " 
due to a UnsatisfiedLinkError: " + ule.getMessage());
             }
         }
     }

Reply via email to