Return-Path: X-Original-To: apmail-geode-commits-archive@minotaur.apache.org Delivered-To: apmail-geode-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 9BB9418A1E for ; Thu, 25 Feb 2016 21:16:19 +0000 (UTC) Received: (qmail 91319 invoked by uid 500); 25 Feb 2016 21:16:19 -0000 Delivered-To: apmail-geode-commits-archive@geode.apache.org Received: (qmail 91290 invoked by uid 500); 25 Feb 2016 21:16:19 -0000 Mailing-List: contact commits-help@geode.incubator.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@geode.incubator.apache.org Delivered-To: mailing list commits@geode.incubator.apache.org Received: (qmail 91278 invoked by uid 99); 25 Feb 2016 21:16:19 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd4-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 25 Feb 2016 21:16:19 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd4-us-west.apache.org (ASF Mail Server at spamd4-us-west.apache.org) with ESMTP id F30F1C093B for ; Thu, 25 Feb 2016 21:16:18 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd4-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -3.549 X-Spam-Level: X-Spam-Status: No, score=-3.549 tagged_above=-999 required=6.31 tests=[KAM_ASCII_DIVIDERS=0.8, KAM_LAZY_DOMAIN_SECURITY=1, RCVD_IN_DNSWL_HI=-5, RCVD_IN_MSPIKE_H3=-0.01, RCVD_IN_MSPIKE_WL=-0.01, RP_MATCHES_RCVD=-0.329] autolearn=disabled Received: from mx2-lw-eu.apache.org ([10.40.0.8]) by localhost (spamd4-us-west.apache.org [10.40.0.11]) (amavisd-new, port 10024) with ESMTP id 8GzLz3K9Zyjj for ; Thu, 25 Feb 2016 21:16:18 +0000 (UTC) Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx2-lw-eu.apache.org (ASF Mail Server at mx2-lw-eu.apache.org) with SMTP id 2617B5F2C3 for ; Thu, 25 Feb 2016 21:16:16 +0000 (UTC) Received: (qmail 89624 invoked by uid 99); 25 Feb 2016 21:16:16 -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, 25 Feb 2016 21:16:16 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id E9136E8F33; Thu, 25 Feb 2016 21:16:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: klund@apache.org To: commits@geode.incubator.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: incubator-geode git commit: Remove deprecated methods Date: Thu, 25 Feb 2016 21:16:15 +0000 (UTC) Repository: incubator-geode Updated Branches: refs/heads/feature/GEODE-953 d93a2aacb -> 789e7216d Remove deprecated methods Project: http://git-wip-us.apache.org/repos/asf/incubator-geode/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-geode/commit/789e7216 Tree: http://git-wip-us.apache.org/repos/asf/incubator-geode/tree/789e7216 Diff: http://git-wip-us.apache.org/repos/asf/incubator-geode/diff/789e7216 Branch: refs/heads/feature/GEODE-953 Commit: 789e7216de8498684bcce5ebaab12275d60b4b2f Parents: d93a2aa Author: Kirk Lund Authored: Thu Feb 25 13:15:53 2016 -0800 Committer: Kirk Lund Committed: Thu Feb 25 13:15:53 2016 -0800 ---------------------------------------------------------------------- .../test/junit/rules/ExpectedTimeoutRule.java | 22 -------------------- 1 file changed, 22 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-geode/blob/789e7216/geode-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/ExpectedTimeoutRule.java ---------------------------------------------------------------------- diff --git a/geode-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/ExpectedTimeoutRule.java b/geode-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/ExpectedTimeoutRule.java index 5d3992d..c7a98b8 100755 --- a/geode-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/ExpectedTimeoutRule.java +++ b/geode-junit/src/main/java/com/gemstone/gemfire/test/junit/rules/ExpectedTimeoutRule.java @@ -62,28 +62,6 @@ public class ExpectedTimeoutRule implements TestRule { } /** - * This method does nothing. - * - * @deprecated AssertionErrors are handled by default - */ - @Deprecated - public ExpectedTimeoutRule handleAssertionErrors() { - this.delegate.handleAssertionErrors(); - return this; - } - - /** - * This method does nothing. - * - * @deprecated AssumptionViolatedExceptions are handled by default - */ - @Deprecated - public ExpectedTimeoutRule handleAssumptionViolatedExceptions() { - this.delegate.handleAssumptionViolatedExceptions(); - return this; - } - - /** * Adds {@code matcher} to the list of requirements for any thrown exception. */ public void expect(final Matcher matcher) {