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/09/10 02:45:08 UTC

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

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 3691cd9b8 -> dfdd5811b


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/dfdd5811
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/dfdd5811
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/dfdd5811

Branch: refs/heads/master
Commit: dfdd5811b4630e1cd56531946dc6ad5d16741cc2
Parents: 3691cd9
Author: ggregory <gg...@apache.org>
Authored: Wed Sep 9 17:45:06 2015 -0700
Committer: ggregory <gg...@apache.org>
Committed: Wed Sep 9 17:45:06 2015 -0700

----------------------------------------------------------------------
 .../src/test/java/org/apache/logging/log4j/LambdaLoggerTest.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/dfdd5811/log4j-api/src/test/java/org/apache/logging/log4j/LambdaLoggerTest.java
----------------------------------------------------------------------
diff --git a/log4j-api/src/test/java/org/apache/logging/log4j/LambdaLoggerTest.java b/log4j-api/src/test/java/org/apache/logging/log4j/LambdaLoggerTest.java
index 78bf142..e9c8250 100644
--- a/log4j-api/src/test/java/org/apache/logging/log4j/LambdaLoggerTest.java
+++ b/log4j-api/src/test/java/org/apache/logging/log4j/LambdaLoggerTest.java
@@ -56,7 +56,7 @@ public class LambdaLoggerTest {
         private static final long serialVersionUID = 1L;
 
         boolean enabled = true;
-        final List<LambdaLoggerTest.LogEvent> list = new ArrayList<LambdaLoggerTest.LogEvent>();
+        final List<LambdaLoggerTest.LogEvent> list = new ArrayList<>();
 
         @Override
         public boolean isEnabled(final Level level, final Marker marker, final Message message, final Throwable t) {