You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@groovy.apache.org by su...@apache.org on 2019/12/29 16:36:46 UTC

[groovy] branch master updated: Remove deprecated methods of `IndyInterface`(master only)

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 <su...@apache.org>
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) {