From commits-return-30416-archive-asf-public=cust-asf.ponee.io@geode.apache.org Wed Jan 16 16:37:01 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id E7976180645 for ; Wed, 16 Jan 2019 16:37:00 +0100 (CET) Received: (qmail 55908 invoked by uid 500); 16 Jan 2019 15:37:00 -0000 Mailing-List: contact commits-help@geode.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.apache.org Delivered-To: mailing list commits@geode.apache.org Received: (qmail 55899 invoked by uid 99); 16 Jan 2019 15:37:00 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Jan 2019 15:37:00 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 783CC8713C; Wed, 16 Jan 2019 15:36:59 +0000 (UTC) Date: Wed, 16 Jan 2019 15:36:58 +0000 To: "commits@geode.apache.org" Subject: [geode] branch develop updated: GEODE-6274: Removes CreateRegionCommand build warning MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <154765301783.31469.18289436630451434887@gitbox.apache.org> From: jinmeiliao@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: geode X-Git-Refname: refs/heads/develop X-Git-Reftype: branch X-Git-Oldrev: 3a190d31b41e64d2c2464605b2eb3d3852e21c96 X-Git-Newrev: 8cd574cd6b886b59200a68c2e109b1333523a124 X-Git-Rev: 8cd574cd6b886b59200a68c2e109b1333523a124 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. jinmeiliao pushed a commit to branch develop in repository https://gitbox.apache.org/repos/asf/geode.git The following commit(s) were added to refs/heads/develop by this push: new 8cd574c GEODE-6274: Removes CreateRegionCommand build warning 8cd574c is described below commit 8cd574cd6b886b59200a68c2e109b1333523a124 Author: Jens Deppe AuthorDate: Tue Jan 15 13:57:12 2019 -0500 GEODE-6274: Removes CreateRegionCommand build warning Signed-off-by: Peter Tran --- .../geode/management/internal/cli/commands/CreateRegionCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/CreateRegionCommand.java b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/CreateRegionCommand.java index b305d3d..e752d8a 100644 --- a/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/CreateRegionCommand.java +++ b/geode-core/src/main/java/org/apache/geode/management/internal/cli/commands/CreateRegionCommand.java @@ -245,7 +245,7 @@ public class CreateRegionCommand extends SingleGfshCommand { !colocatedRegionBean.getRegionType().equals("PERSISTENT_PARTITION")) { return ResultModel.createError(CliStrings.format( CliStrings.CREATE_REGION__MSG__COLOCATEDWITH_REGION_0_IS_NOT_PARTITIONEDREGION, - new String[] {prColocatedWith})); + (Object) prColocatedWith)); } }