You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2015/08/30 18:52:30 UTC

logging-log4j2 git commit: Remove Redundant specification of type arguments.

Repository: logging-log4j2
Updated Branches:
  refs/heads/LOG4J2-952 bf4afb3e3 -> e66183855


Remove Redundant specification of type arguments.

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

Branch: refs/heads/LOG4J2-952
Commit: e661838551d35de4dadb0d89e54ee0adab649993
Parents: bf4afb3
Author: ggregory <gg...@apache.org>
Authored: Sun Aug 30 09:52:28 2015 -0700
Committer: ggregory <gg...@apache.org>
Committed: Sun Aug 30 09:52:28 2015 -0700

----------------------------------------------------------------------
 .../core/config/assembler/api/ConfigurationAssemblerFactory.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/e6618385/log4j-core/src/main/java/org/apache/logging/log4j/core/config/assembler/api/ConfigurationAssemblerFactory.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/assembler/api/ConfigurationAssemblerFactory.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/assembler/api/ConfigurationAssemblerFactory.java
index 8c26425..85e1c89 100644
--- a/log4j-core/src/main/java/org/apache/logging/log4j/core/config/assembler/api/ConfigurationAssemblerFactory.java
+++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/config/assembler/api/ConfigurationAssemblerFactory.java
@@ -34,6 +34,6 @@ public class ConfigurationAssemblerFactory {
     }
 
     public static <T extends AssembledConfiguration> ConfigurationAssembler<T> newConfiguration(Class<T> clazz) {
-        return new DefaultConfigurationAssembler<T>(clazz);
+        return new DefaultConfigurationAssembler<>(clazz);
     }
 }