Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 8F2ED200C8B for ; Thu, 27 Apr 2017 20:47:40 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 8DD97160BC1; Thu, 27 Apr 2017 18:47:40 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 21A02160BBE for ; Thu, 27 Apr 2017 20:47:38 +0200 (CEST) Received: (qmail 63491 invoked by uid 500); 27 Apr 2017 18:47:37 -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 62646 invoked by uid 99); 27 Apr 2017 18:47:37 -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; Thu, 27 Apr 2017 18:47:37 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1A1E7E04B1; Thu, 27 Apr 2017 18:47:37 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: zhouxj@apache.org To: commits@geode.apache.org Date: Thu, 27 Apr 2017 18:47:55 -0000 Message-Id: <585068d0887d4ecdb62a6f8a203a3efa@git.apache.org> In-Reply-To: References: X-Mailer: ASF-Git Admin Mailer Subject: [20/40] geode git commit: GEODE-253: Removed depreated and not used EntryNotFoundInRegion class This closes #465 archived-at: Thu, 27 Apr 2017 18:47:40 -0000 GEODE-253: Removed depreated and not used EntryNotFoundInRegion class This closes #465 Signed-off-by: adongre Project: http://git-wip-us.apache.org/repos/asf/geode/repo Commit: http://git-wip-us.apache.org/repos/asf/geode/commit/e8002828 Tree: http://git-wip-us.apache.org/repos/asf/geode/tree/e8002828 Diff: http://git-wip-us.apache.org/repos/asf/geode/diff/e8002828 Branch: refs/heads/feature/GEM-1299 Commit: e8002828f755dbcb40f02a482cdfddf362f38a01 Parents: 384970d Author: adongre Authored: Wed Apr 19 15:04:24 2017 +0530 Committer: adongre Committed: Wed Apr 26 18:19:49 2017 +0530 ---------------------------------------------------------------------- .../geode/cache/EntryNotFoundInRegion.java | 52 -------------------- 1 file changed, 52 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/geode/blob/e8002828/geode-core/src/main/java/org/apache/geode/cache/EntryNotFoundInRegion.java ---------------------------------------------------------------------- diff --git a/geode-core/src/main/java/org/apache/geode/cache/EntryNotFoundInRegion.java b/geode-core/src/main/java/org/apache/geode/cache/EntryNotFoundInRegion.java deleted file mode 100644 index ad0f516..0000000 --- a/geode-core/src/main/java/org/apache/geode/cache/EntryNotFoundInRegion.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * Licensed to the Apache Software Foundation (ASF) under one or more contributor license - * agreements. See the NOTICE file distributed with this work for additional information regarding - * copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the - * "License"); you may not use this file except in compliance with the License. You may obtain a - * copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License - * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express - * or implied. See the License for the specific language governing permissions and limitations under - * the License. - */ -package org.apache.geode.cache; - -import org.apache.geode.GemFireException; -import org.apache.geode.internal.i18n.LocalizedStrings; -import org.apache.geode.InternalGemFireError; - -/** - * @deprecated this class is no longer in use - */ -@Deprecated -public class EntryNotFoundInRegion extends GemFireException { - private static final long serialVersionUID = 5572550909947420405L; - - /** - * Generates an {@link InternalGemFireError} - * - * @param msg the detail message - * @deprecated Do not create instances of this class. - */ - @Deprecated - public EntryNotFoundInRegion(String msg) { - throw new InternalGemFireError( - LocalizedStrings.EntryNotFoundInRegion_THIS_CLASS_IS_DEPRECATED.toLocalizedString()); - } - - /** - * Generates an {@link InternalGemFireError} - * - * @param msg the detail message - * @param cause the causal Throwable - * @deprecated do not create instances of this class. - */ - @Deprecated - public EntryNotFoundInRegion(String msg, Throwable cause) { - throw new InternalGemFireError( - LocalizedStrings.EntryNotFoundInRegion_THIS_CLASS_IS_DEPRECATED.toLocalizedString()); - } -}