You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@geode.apache.org by qi...@apache.org on 2015/08/06 19:11:23 UTC

[12/19] incubator-geode git commit: Fix return type of getExtendedLogger. The type is inferred correctly on 1.8 but not in 1.7. This change makes it correct under both versions of JDK.

Fix return type of getExtendedLogger. The type is inferred correctly
on 1.8 but not in 1.7. This change makes it correct under both versions
of JDK.


Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/71f00b5a
Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/71f00b5a
Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/71f00b5a

Branch: refs/heads/feature/GEODE-137
Commit: 71f00b5a178ffe040884bcaff2429cb508b9a652
Parents: 946f6b6
Author: Kirk Lund <kl...@pivotal.io>
Authored: Tue Aug 4 12:44:01 2015 -0700
Committer: Qihong Chen <qc...@pivotal.io>
Committed: Thu Aug 6 10:07:48 2015 -0700

----------------------------------------------------------------------
 .../com/gemstone/gemfire/internal/logging/log4j/FastLogger.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/71f00b5a/gemfire-core/src/main/java/com/gemstone/gemfire/internal/logging/log4j/FastLogger.java
----------------------------------------------------------------------
diff --git a/gemfire-core/src/main/java/com/gemstone/gemfire/internal/logging/log4j/FastLogger.java b/gemfire-core/src/main/java/com/gemstone/gemfire/internal/logging/log4j/FastLogger.java
index 9583429..4af57d5 100644
--- a/gemfire-core/src/main/java/com/gemstone/gemfire/internal/logging/log4j/FastLogger.java
+++ b/gemfire-core/src/main/java/com/gemstone/gemfire/internal/logging/log4j/FastLogger.java
@@ -57,7 +57,7 @@ public class FastLogger extends ExtendedLoggerWrapper {
     return delegating;
   }
   
-  public Logger getExtendedLogger() {
+  public ExtendedLogger getExtendedLogger() {
     return super.logger;
   }
 }