changeset 24231:18ae50e05080 jvmci-0.35

HotSpotResolvedJavaMethod.setNotInlineable() should be renamed to represent actual behavior (JDK-8180487)
author Doug Simon <doug.simon@oracle.com>
date Thu, 14 Sep 2017 13:00:31 +0200
parents b9b116e02a3f
children 9c85559fef58
files .hgignore jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotResolvedJavaMethod.java
diffstat 2 files changed, 1 insertions(+), 9 deletions(-) [+]
line wrap: on
line diff
--- a/.hgignore	Thu Sep 14 13:00:31 2017 +0200
+++ b/.hgignore	Thu Sep 14 13:00:31 2017 +0200
@@ -13,6 +13,7 @@
 \.factorypath
 \.externalToolBuilders
 \.project
+\.pydevproject
 \.settings/
 \.metadata/
 ~$
--- a/jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotResolvedJavaMethod.java	Thu Sep 14 13:00:31 2017 +0200
+++ b/jvmci/jdk.vm.ci.hotspot/src/jdk/vm/ci/hotspot/HotSpotResolvedJavaMethod.java	Thu Sep 14 13:00:31 2017 +0200
@@ -62,15 +62,6 @@
     void setNotInlineableOrCompileable();
 
     /**
-     * Use {@link #setNotInlineableOrCompileable()} instead as its name better reflect the semantics
-     * this method has always had.
-     */
-    @Deprecated
-    default void setNotInlineable() {
-        setNotInlineableOrCompileable();
-    }
-
-    /**
      * Returns true if this method is one of the special methods that is ignored by security stack
      * walks.
      *