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 2016/04/18 01:29:30 UTC

logging-log4j2 git commit: Add missing '@Override' annotations to implementations of interface methods.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 99b5a5def -> 87780643c


Add missing '@Override' annotations to implementations of interface
methods.

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

Branch: refs/heads/master
Commit: 87780643c73606f9d6a43f0ed53cdf3355857597
Parents: 99b5a5d
Author: ggregory <gg...@apache.org>
Authored: Sun Apr 17 16:29:28 2016 -0700
Committer: ggregory <gg...@apache.org>
Committed: Sun Apr 17 16:29:28 2016 -0700

----------------------------------------------------------------------
 .../java/org/apache/logging/log4j/core/GcFreeLoggingTestUtil.java   | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/87780643/log4j-core/src/test/java/org/apache/logging/log4j/core/GcFreeLoggingTestUtil.java
----------------------------------------------------------------------
diff --git a/log4j-core/src/test/java/org/apache/logging/log4j/core/GcFreeLoggingTestUtil.java b/log4j-core/src/test/java/org/apache/logging/log4j/core/GcFreeLoggingTestUtil.java
index e5b205c..e6517ed 100644
--- a/log4j-core/src/test/java/org/apache/logging/log4j/core/GcFreeLoggingTestUtil.java
+++ b/log4j-core/src/test/java/org/apache/logging/log4j/core/GcFreeLoggingTestUtil.java
@@ -67,6 +67,7 @@ public class GcFreeLoggingTestUtil {
                 "com/google/monitoring/runtime/instrumentation/Sampler", //
         };
         final Sampler sampler = new Sampler() {
+            @Override
             public void sampleAllocation(int count, String desc, Object newObj, long size) {
                 for (int i = 0; i < exclude.length; i++) {
                     if (exclude[i].equals(desc)) {