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 A26801777E for ; Fri, 10 Oct 2014 22:41:44 +0000 (UTC) Received: (qmail 82962 invoked by uid 500); 10 Oct 2014 22:41:44 -0000 Delivered-To: apmail-accumulo-commits-archive@accumulo.apache.org Received: (qmail 82850 invoked by uid 500); 10 Oct 2014 22:41:44 -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 82795 invoked by uid 99); 10 Oct 2014 22:41:44 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 10 Oct 2014 22:41:44 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 161CE81E02B; Fri, 10 Oct 2014 22:41:44 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: elserj@apache.org To: commits@accumulo.apache.org Date: Fri, 10 Oct 2014 22:41:48 -0000 Message-Id: <3fcd18f093d649b5a55ee4777f11118f@git.apache.org> In-Reply-To: <6ead8711baad470fa75fa99273dc8f79@git.apache.org> References: <6ead8711baad470fa75fa99273dc8f79@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [06/21] git commit: ACCUMULO-3226 Remove unnecessary null check ACCUMULO-3226 Remove unnecessary null check Project: http://git-wip-us.apache.org/repos/asf/accumulo/repo Commit: http://git-wip-us.apache.org/repos/asf/accumulo/commit/633e4df1 Tree: http://git-wip-us.apache.org/repos/asf/accumulo/tree/633e4df1 Diff: http://git-wip-us.apache.org/repos/asf/accumulo/diff/633e4df1 Branch: refs/heads/master Commit: 633e4df18492bac952651b6cd8bb56823cdf3c12 Parents: 7b1bb10 Author: Josh Elser Authored: Fri Oct 10 17:28:10 2014 -0400 Committer: Josh Elser Committed: Fri Oct 10 17:28:10 2014 -0400 ---------------------------------------------------------------------- .../main/java/org/apache/accumulo/core/security/Authorizations.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/accumulo/blob/633e4df1/core/src/main/java/org/apache/accumulo/core/security/Authorizations.java ---------------------------------------------------------------------- diff --git a/core/src/main/java/org/apache/accumulo/core/security/Authorizations.java b/core/src/main/java/org/apache/accumulo/core/security/Authorizations.java index b546a48..b983a59 100644 --- a/core/src/main/java/org/apache/accumulo/core/security/Authorizations.java +++ b/core/src/main/java/org/apache/accumulo/core/security/Authorizations.java @@ -131,7 +131,6 @@ public class Authorizations implements Iterable, Serializable { } } else { // it's the old format - ArgumentChecker.notNull(authorizations); if (authorizations.length > 0) setAuthorizations(authsString.split(",")); }