Repository: logging-log4j2
Updated Branches:
  refs/heads/master 05fe8c73c -> abe0fc1d9


Don't hide ivar.

Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/abe0fc1d
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/abe0fc1d
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/abe0fc1d

Branch: refs/heads/master
Commit: abe0fc1d92e04822d5158a325209ba6f49957fcd
Parents: 05fe8c7
Author: ggregory <[email protected]>
Authored: Thu Oct 29 16:15:55 2015 -0700
Committer: ggregory <[email protected]>
Committed: Thu Oct 29 16:15:55 2015 -0700

----------------------------------------------------------------------
 .../apache/logging/log4j/core/config/builder/api/Component.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/abe0fc1d/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/Component.java
----------------------------------------------------------------------
diff --git 
a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/Component.java
 
b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/Component.java
index b528a5d..8ad901f 100644
--- 
a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/Component.java
+++ 
b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/builder/api/Component.java
@@ -55,8 +55,8 @@ public class Component {
     }
 
 
-    public String addAttribute(final String key, final String value) {
-        return attributes.put(key, value);
+    public String addAttribute(final String key, final String newValue) {
+        return attributes.put(key, newValue);
     }
 
     public void addComponent(final Component component) {

Reply via email to