You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by ct...@apache.org on 2015/01/28 20:12:15 UTC

[6/8] accumulo git commit: ACCUMULO-3533 Making getConfiguration() method package-private in AbstractInputFormat

ACCUMULO-3533 Making getConfiguration() method package-private in AbstractInputFormat


Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo
Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/23c97cd7
Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/23c97cd7
Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/23c97cd7

Branch: refs/heads/master
Commit: 23c97cd782f2704a7ee3d9659da5bc79b4189b11
Parents: 9ca9b6a
Author: Corey J. Nolet <cj...@gmail.com>
Authored: Wed Jan 28 00:26:13 2015 -0500
Committer: Corey J. Nolet <cj...@gmail.com>
Committed: Wed Jan 28 00:26:13 2015 -0500

----------------------------------------------------------------------
 .../apache/accumulo/core/client/mapreduce/AbstractInputFormat.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/accumulo/blob/23c97cd7/core/src/main/java/org/apache/accumulo/core/client/mapreduce/AbstractInputFormat.java
----------------------------------------------------------------------
diff --git a/core/src/main/java/org/apache/accumulo/core/client/mapreduce/AbstractInputFormat.java b/core/src/main/java/org/apache/accumulo/core/client/mapreduce/AbstractInputFormat.java
index 95fed00..112e6e5 100644
--- a/core/src/main/java/org/apache/accumulo/core/client/mapreduce/AbstractInputFormat.java
+++ b/core/src/main/java/org/apache/accumulo/core/client/mapreduce/AbstractInputFormat.java
@@ -676,7 +676,7 @@ public abstract class AbstractInputFormat<K, V> extends InputFormat<K,V> {
     return splits;
   }
 
-  protected static Configuration getConfiguration(JobContext context) {
+  static Configuration getConfiguration(JobContext context) {
     return HadoopCompatUtil.getConfiguration(context);
   }
 }