Return-Path: X-Original-To: apmail-kylin-commits-archive@minotaur.apache.org Delivered-To: apmail-kylin-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id DACBC18AE1 for ; Sun, 14 Feb 2016 02:53:17 +0000 (UTC) Received: (qmail 11566 invoked by uid 500); 14 Feb 2016 02:53:17 -0000 Delivered-To: apmail-kylin-commits-archive@kylin.apache.org Received: (qmail 11474 invoked by uid 500); 14 Feb 2016 02:53:17 -0000 Mailing-List: contact commits-help@kylin.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@kylin.apache.org Delivered-To: mailing list commits@kylin.apache.org Received: (qmail 11407 invoked by uid 99); 14 Feb 2016 02:53:17 -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; Sun, 14 Feb 2016 02:53:17 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 75A70E0F7F; Sun, 14 Feb 2016 02:53:17 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: shaofengshi@apache.org To: commits@kylin.apache.org Date: Sun, 14 Feb 2016 02:53:22 -0000 Message-Id: <97e25c1aa17444d480c28a6cd63aee90@git.apache.org> In-Reply-To: <18bb7d406fbe4986b9e8b91fdf987b98@git.apache.org> References: <18bb7d406fbe4986b9e8b91fdf987b98@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [06/15] kylin git commit: remove getClusterName() from KylinConfig.java remove getClusterName() from KylinConfig.java Project: http://git-wip-us.apache.org/repos/asf/kylin/repo Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/b26d9570 Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/b26d9570 Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/b26d9570 Branch: refs/heads/helix-201602 Commit: b26d9570fb963f5aaa80ae8198d65f1a0fd5c90f Parents: 6654079 Author: shaofengshi Authored: Wed Dec 30 16:09:32 2015 +0800 Committer: shaofengshi Committed: Sat Feb 6 13:31:49 2016 +0800 ---------------------------------------------------------------------- .../src/main/java/org/apache/kylin/common/KylinConfig.java | 4 ---- 1 file changed, 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/kylin/blob/b26d9570/core-common/src/main/java/org/apache/kylin/common/KylinConfig.java ---------------------------------------------------------------------- diff --git a/core-common/src/main/java/org/apache/kylin/common/KylinConfig.java b/core-common/src/main/java/org/apache/kylin/common/KylinConfig.java index ea77e47..81f5827 100644 --- a/core-common/src/main/java/org/apache/kylin/common/KylinConfig.java +++ b/core-common/src/main/java/org/apache/kylin/common/KylinConfig.java @@ -264,9 +264,5 @@ public class KylinConfig extends KylinConfigBase { out.println(key + "=" + val); } } - - public String getClusterName() { - return this.getOptional("kylin.cluster.name", getMetadataUrlPrefix()); - } }