You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -51,15 +52,15 @@ public void checkStableLamdaNameForRunnableAndAutoCloseable() {
51
52
Runnabler1 = s::hashCode;
52
53
Stringr1Name = getLambdaName(r1.getClass());
53
54
54
-
assertEquals("The two stable lambda names should the same as they reference the same method and implement the same interface", r0Name, r1Name);
55
+
Assert.assertEquals("The two stable lambda names should the same as they reference the same method and implement the same interface", r0Name, r1Name);
55
56
56
57
AutoCloseableac = s::hashCode;
57
58
StringacName = getLambdaName(ac.getClass());
58
59
59
60
assertNotEquals("The two stable lambda names should not be the same as they reference the same method but implement different interfaces", r0Name, acName);
Copy file name to clipboardExpand all lines: compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/replaycomp/CompilerInterfaceDeclarations.java
Copy file name to clipboardExpand all lines: compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/replaycomp/RecordedOperationPersistence.java
Copy file name to clipboardExpand all lines: compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/replaycomp/proxy/HotSpotResolvedJavaMethodProxy.java
Copy file name to clipboardExpand all lines: compiler/src/jdk.graal.compiler/src/jdk/graal/compiler/hotspot/replaycomp/proxy/HotSpotResolvedJavaTypeProxy.java
+6-6Lines changed: 6 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -283,8 +283,8 @@ public final HotSpotResolvedObjectType getSuperclass() {
0 commit comments