diff --git a/compiler/src/jdk.graal.nativeimage/snapshot.sigtest b/compiler/src/jdk.graal.nativeimage/snapshot.sigtest index b6a8776204af..1456a58e38cc 100644 --- a/compiler/src/jdk.graal.nativeimage/snapshot.sigtest +++ b/compiler/src/jdk.graal.nativeimage/snapshot.sigtest @@ -1,5 +1,5 @@ #Signature file v4.1 -#Version +#Version CLSS public abstract interface jdk.graal.nativeimage.LibGraalLoader meth public abstract java.nio.file.Path getJavaHome() @@ -14,8 +14,6 @@ meth public static void processReferences() meth public static void fatalError(java.lang.String) supr java.lang.Object -CLSS public jdk.graal.nativeimage.FoldNodePlugin - CLSS public final jdk.graal.nativeimage.hosted.GlobalData meth public static java.util.function.Supplier createGlobal(long) supr java.lang.Object diff --git a/compiler/src/jdk.graal.nativeimage/src/jdk/graal/nativeimage/FoldNodePlugin.java b/compiler/src/jdk.graal.nativeimage/src/jdk/graal/nativeimage/FoldNodePlugin.java deleted file mode 100644 index 84f4cf24438d..000000000000 --- a/compiler/src/jdk.graal.nativeimage/src/jdk/graal/nativeimage/FoldNodePlugin.java +++ /dev/null @@ -1,34 +0,0 @@ -/* - * Copyright (c) 2025, Oracle and/or its affiliates. All rights reserved. - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. - * - * This code is free software; you can redistribute it and/or modify it - * under the terms of the GNU General Public License version 2 only, as - * published by the Free Software Foundation. Oracle designates this - * particular file as subject to the "Classpath" exception as provided - * by Oracle in the LICENSE file that accompanied this code. - * - * This code is distributed in the hope that it will be useful, but WITHOUT - * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or - * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License - * version 2 for more details (a copy is included in the LICENSE file that - * accompanied this code). - * - * You should have received a copy of the GNU General Public License version - * 2 along with this work; if not, write to the Free Software Foundation, - * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. - * - * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA - * or visit www.oracle.com if you need additional information or have any - * questions. - */ -package jdk.graal.nativeimage; - -/** - * A marker interface for generated classes that implement compile-time evaluation (i.e. folding) of - * certain method calls where the folding must be deferred to libgraal runtime. - * - * @since 25 - */ -public interface FoldNodePlugin { -}