Return-Path: X-Original-To: apmail-deltaspike-commits-archive@www.apache.org Delivered-To: apmail-deltaspike-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 418B9102AB for ; Sun, 24 Nov 2013 12:43:32 +0000 (UTC) Received: (qmail 91618 invoked by uid 500); 24 Nov 2013 12:43:31 -0000 Delivered-To: apmail-deltaspike-commits-archive@deltaspike.apache.org Received: (qmail 91592 invoked by uid 500); 24 Nov 2013 12:43:27 -0000 Mailing-List: contact commits-help@deltaspike.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@deltaspike.apache.org Delivered-To: mailing list commits@deltaspike.apache.org Received: (qmail 91585 invoked by uid 99); 24 Nov 2013 12:43:24 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 24 Nov 2013 12:43:24 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id DED7290453E; Sun, 24 Nov 2013 12:43:23 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: gpetracek@apache.org To: commits@deltaspike.apache.org Message-Id: <0002af13c044454fb81fb64eb28c3b29@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: git commit: DELTASPIKE-445 fixed checkstyle violations Date: Sun, 24 Nov 2013 12:43:23 +0000 (UTC) Updated Branches: refs/heads/master 562412bb4 -> feba6a764 DELTASPIKE-445 fixed checkstyle violations Project: http://git-wip-us.apache.org/repos/asf/deltaspike/repo Commit: http://git-wip-us.apache.org/repos/asf/deltaspike/commit/feba6a76 Tree: http://git-wip-us.apache.org/repos/asf/deltaspike/tree/feba6a76 Diff: http://git-wip-us.apache.org/repos/asf/deltaspike/diff/feba6a76 Branch: refs/heads/master Commit: feba6a764eec10f5faccd43ac10912f589ee92d1 Parents: 562412b Author: gpetracek Authored: Sun Nov 24 13:41:50 2013 +0100 Committer: gpetracek Committed: Sun Nov 24 13:42:49 2013 +0100 ---------------------------------------------------------------------- .../deltaspike/core/util/ProjectStageProducer.java | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/deltaspike/blob/feba6a76/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ProjectStageProducer.java ---------------------------------------------------------------------- diff --git a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ProjectStageProducer.java b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ProjectStageProducer.java index 7a93ab5..b79be81 100644 --- a/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ProjectStageProducer.java +++ b/deltaspike/core/api/src/main/java/org/apache/deltaspike/core/util/ProjectStageProducer.java @@ -57,11 +57,12 @@ public class ProjectStageProducer implements Serializable * We iterate through them until we find the first non-empty value. */ public static final String[] CONFIG_SETTING_KEYS = - { - "org.apache.deltaspike.ProjectStage", - "javax.faces.PROJECT_STAGE", - "faces.PROJECT_STAGE" - }; + { + //TODO discuss it + "org.apache.deltaspike.ProjectStage", + "javax.faces.PROJECT_STAGE", + "faces.PROJECT_STAGE" + }; protected static final Logger LOG = Logger.getLogger(ProjectStageProducer.class.getName());