You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by rz...@apache.org on 2022/01/29 12:20:13 UTC

[tomee] branch master updated: Minor: Adds a missing ' in output leading to broken formatting in markdown files

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 7cad053  Minor: Adds a missing ' in output leading to broken formatting in markdown files
7cad053 is described below

commit 7cad053bf29c0bef4e3beaf6a2ac8ff45d08c161
Author: Richard Zowalla <rz...@apache.org>
AuthorDate: Sat Jan 29 13:19:29 2022 +0100

    Minor: Adds a missing ' in output leading to broken formatting in markdown files
---
 .../src/main/java/org/apache/openejb/config/AutoConfig.java             | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/container/openejb-core/src/main/java/org/apache/openejb/config/AutoConfig.java b/container/openejb-core/src/main/java/org/apache/openejb/config/AutoConfig.java
index 32aef85..e64c566 100644
--- a/container/openejb-core/src/main/java/org/apache/openejb/config/AutoConfig.java
+++ b/container/openejb-core/src/main/java/org/apache/openejb/config/AutoConfig.java
@@ -2087,7 +2087,7 @@ public class AutoConfig implements DynamicDeployer, JndiConstants {
     }
 
     private void logAutoCreateResource(final ResourceInfo resourceInfo, final String type, final String beanName) {
-        logger.info("Auto-creating a Resource with id '" + resourceInfo.id + "' of type '" + type + " for '" + beanName + "'.");
+        logger.info("Auto-creating a Resource with id '" + resourceInfo.id + "' of type '" + type + "' for '" + beanName + "'.");
     }
 
     private String firstMatching(final String prefix, final String type, final Properties required, final AppResources appResources) {