Return-Path: X-Original-To: apmail-accumulo-commits-archive@www.apache.org Delivered-To: apmail-accumulo-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3C1B01740A for ; Wed, 28 Jan 2015 18:46:50 +0000 (UTC) Received: (qmail 80041 invoked by uid 500); 28 Jan 2015 18:46:50 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 79948 invoked by uid 500); 28 Jan 2015 18:46:50 -0000 Mailing-List: contact commits-help@accumulo.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@accumulo.apache.org Delivered-To: mailing list commits@accumulo.apache.org Received: (qmail 79929 invoked by uid 99); 28 Jan 2015 18:46:50 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 28 Jan 2015 18:46:50 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 7BF92E03EC; Wed, 28 Jan 2015 18:46:49 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ctubbsii@apache.org To: commits@accumulo.apache.org Date: Wed, 28 Jan 2015 18:46:50 -0000 Message-Id: <4da2e695f21f48b895185da3ddc8a676@git.apache.org> In-Reply-To: <18b11b72bb6d42568414c10f9aee5ff3@git.apache.org> References: <18b11b72bb6d42568414c10f9aee5ff3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [2/3] 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/1.6 Commit: 23c97cd782f2704a7ee3d9659da5bc79b4189b11 Parents: 9ca9b6a Author: Corey J. Nolet Authored: Wed Jan 28 00:26:13 2015 -0500 Committer: Corey J. Nolet 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 extends InputFormat { return splits; } - protected static Configuration getConfiguration(JobContext context) { + static Configuration getConfiguration(JobContext context) { return HadoopCompatUtil.getConfiguration(context); } }