Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -148,15 +148,6 @@ default boolean declaresDefaultMethods() {
*/
boolean isAssignableFrom(ResolvedJavaType other);

/**
* Returns {@code null} since support for VM anonymous class was removed by JDK-8243287. This
* method is preserved for JVMCI backwards compatibility.
*/
@Deprecated
default ResolvedJavaType getHostClass() {
return null;
}

/**
* Returns true if this type is exactly the type {@link java.lang.Object}.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -702,23 +702,18 @@ private Method findTestMethod(Method apiMethod) {

// @formatter:off
private static final String[] untestedApiMethods = {
"newInstance",
"getDeclaringClass",
"getEncoding",
"getProfilingInfo",
"reprofile",
"getCompilerStorage",
"hasNeverInlineDirective",
"canBeInlined",
"shouldBeInlined",
"getLineNumberTable",
"isInVirtualMethodTable",
"toParameterTypes",
"getParameterAnnotation",
"getSpeculationLog",
"isFinal",
"invoke",
"$jacocoInit"
"isFinal"
};
// @formatter:on

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1411,9 +1411,6 @@ public static void checkDeclaredAnnotationInfo(Class<?> clazz) {
"newArray",
"isInitialized",
"isLinked",
"getJavaClass",
"getObjectHub",
"getHostClass",
"hasFinalizableSubclass",
"hasFinalizer",
"isLocal",
Expand All @@ -1423,8 +1420,7 @@ public static void checkDeclaredAnnotationInfo(Class<?> clazz) {
"getEnclosingType",
"lookupType",
"isSealed", // tested with getPermittedSubclasses
"resolveField",
"$jacocoInit"
"resolveField"
};
// @formatter:on

Expand Down
Loading