Return-Path: X-Original-To: apmail-accumulo-dev-archive@www.apache.org Delivered-To: apmail-accumulo-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B29AD10F36 for ; Tue, 1 Jul 2014 13:39:48 +0000 (UTC) Received: (qmail 50850 invoked by uid 500); 1 Jul 2014 13:39:48 -0000 Delivered-To: apmail-accumulo-dev-archive@accumulo.apache.org Received: (qmail 50802 invoked by uid 500); 1 Jul 2014 13:39:48 -0000 Mailing-List: contact dev-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 dev@accumulo.apache.org Received: (qmail 50790 invoked by uid 99); 1 Jul 2014 13:39:48 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 01 Jul 2014 13:39:48 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id D8FDF9911D9; Tue, 1 Jul 2014 13:39:47 +0000 (UTC) From: madrob To: dev@accumulo.apache.org Reply-To: dev@accumulo.apache.org References: In-Reply-To: Subject: [GitHub] accumulo pull request: ACCUMULO-2943 Fixing failures where no RNG ... Content-Type: text/plain Message-Id: <20140701133947.D8FDF9911D9@tyr.zones.apache.org> Date: Tue, 1 Jul 2014 13:39:47 +0000 (UTC) Github user madrob commented on a diff in the pull request: https://github.com/apache/accumulo/pull/11#discussion_r14403671 --- Diff: core/src/main/java/org/apache/accumulo/core/conf/Property.java --- @@ -504,7 +508,11 @@ public boolean isDeprecated() { } public boolean isSensitive() { - return hasAnnotation(Sensitive.class) || hasPrefixWithAnnotation(getKey(), Sensitive.class); + return hasAnnotation(Sensitive.class) || hasPrefixWithAnnotation(getKey(), Sensitive.class); --- End diff -- Please try to minimize your patch set to only the affected lines. If there are outstanding formatting issues, we can address those in another patch. --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---