You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tomee.apache.org by jg...@apache.org on 2019/10/16 09:25:58 UTC

[tomee] branch master updated: [TOMEE-2114] - Put elements to member of class

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

jgallimore 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 78da8b6  [TOMEE-2114] - Put elements to member of class
     new a92f454  Merge pull request #589 from sercheo87/TOMEE-2114
78da8b6 is described below

commit 78da8b65cc20880ad7e9e4e872b7289811280332
Author: Sergio Chancay <se...@icloud.com>
AuthorDate: Tue Oct 15 23:10:24 2019 -0500

    [TOMEE-2114] - Put elements to member of class
---
 .../src/main/java/org/apache/openejb/util/PropertiesService.java        | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/container/openejb-core/src/main/java/org/apache/openejb/util/PropertiesService.java b/container/openejb-core/src/main/java/org/apache/openejb/util/PropertiesService.java
index 076ae47..10c7f11 100644
--- a/container/openejb-core/src/main/java/org/apache/openejb/util/PropertiesService.java
+++ b/container/openejb-core/src/main/java/org/apache/openejb/util/PropertiesService.java
@@ -89,7 +89,7 @@ public class PropertiesService {
     }
 
     public void putAll(final Properties props) {
-        props.putAll(props);
+        this.props.putAll(props);
     }
 
     public Properties getProperties() {