From commits-return-10421-archive-asf-public=cust-asf.ponee.io@groovy.apache.org Sun Dec 29 16:36:47 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 [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 3CB8C18063F for ; Sun, 29 Dec 2019 17:36:47 +0100 (CET) Received: (qmail 46253 invoked by uid 500); 29 Dec 2019 16:36:46 -0000 Mailing-List: contact commits-help@groovy.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@groovy.apache.org Delivered-To: mailing list commits@groovy.apache.org Received: (qmail 46244 invoked by uid 99); 29 Dec 2019 16:36:46 -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; Sun, 29 Dec 2019 16:36:46 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 371C48D80D; Sun, 29 Dec 2019 16:36:46 +0000 (UTC) Date: Sun, 29 Dec 2019 16:36:46 +0000 To: "commits@groovy.apache.org" Subject: [groovy] branch master updated: Remove deprecated methods of `IndyInterface`(master only) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <157763740608.11764.15102049988873701340@gitbox.apache.org> From: sunlan@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: groovy X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Oldrev: 699c13483fcd83269920d377530305f49e10deb9 X-Git-Newrev: fd4ca53ffdfa7a0eeb71826552d06bfcf21b5295 X-Git-Rev: fd4ca53ffdfa7a0eeb71826552d06bfcf21b5295 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. sunlan pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/groovy.git The following commit(s) were added to refs/heads/master by this push: new fd4ca53 Remove deprecated methods of `IndyInterface`(master only) fd4ca53 is described below commit fd4ca53ffdfa7a0eeb71826552d06bfcf21b5295 Author: Daniel Sun AuthorDate: Mon Dec 30 00:36:24 2019 +0800 Remove deprecated methods of `IndyInterface`(master only) --- .../codehaus/groovy/vmplugin/v7/IndyInterface.java | 36 ---------------------- 1 file changed, 36 deletions(-) diff --git a/src/main/java/org/codehaus/groovy/vmplugin/v7/IndyInterface.java b/src/main/java/org/codehaus/groovy/vmplugin/v7/IndyInterface.java index 866b45e..787598b 100644 --- a/src/main/java/org/codehaus/groovy/vmplugin/v7/IndyInterface.java +++ b/src/main/java/org/codehaus/groovy/vmplugin/v7/IndyInterface.java @@ -157,42 +157,6 @@ public class IndyInterface { } /** - * bootstrap method for method calls with "this" as receiver - * @deprecated since Groovy 2.1.0 - */ - @Deprecated - public static CallSite bootstrapCurrent(Lookup caller, String name, MethodType type) { - return realBootstrap(caller, name, CALL_TYPES.METHOD.ordinal(), type, false, true, false); - } - - /** - * bootstrap method for method calls with "this" as receiver safe - * @deprecated since Groovy 2.1.0 - */ - @Deprecated - public static CallSite bootstrapCurrentSafe(Lookup caller, String name, MethodType type) { - return realBootstrap(caller, name, CALL_TYPES.METHOD.ordinal(), type, true, true, false); - } - - /** - * bootstrap method for standard method calls - * @deprecated since Groovy 2.1.0 - */ - @Deprecated - public static CallSite bootstrap(Lookup caller, String name, MethodType type) { - return realBootstrap(caller, name, CALL_TYPES.METHOD.ordinal(), type, false, false, false); - } - - /** - * bootstrap method for null safe standard method calls - * @deprecated since Groovy 2.1.0 - */ - @Deprecated - public static CallSite bootstrapSafe(Lookup caller, String name, MethodType type) { - return realBootstrap(caller, name, CALL_TYPES.METHOD.ordinal(), type, true, false, false); - } - - /** * backing bootstrap method with all parameters */ private static CallSite realBootstrap(Lookup caller, String name, int callID, MethodType type, boolean safe, boolean thisCall, boolean spreadCall) {