Skip to content

Commit e49c097

Browse files
author
Maja Skoko
committed
jdk21 changes in lambda names
1 parent 93753d1 commit e49c097

File tree

1 file changed

+1
-1
lines changed
  • substratevm/src/com.oracle.graal.pointsto/src/com/oracle/graal/pointsto/meta

1 file changed

+1
-1
lines changed

substratevm/src/com.oracle.graal.pointsto/src/com/oracle/graal/pointsto/meta/AnalysisMethod.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -975,6 +975,6 @@ public boolean getReturnsAllInstantiatedTypes() {
975975
*/
976976
public static String comparingMethodNames(AnalysisMethod method) {
977977
String methodName = method.format("%H.%n(%P):%R");
978-
return methodName.contains("$$Lambda$") ? methodName.replaceAll("/[0-9a-fA-Fx]*\\.", ".") : methodName;
978+
return methodName.contains("$$Lambda") ? methodName.replaceAll("/[0-9a-fA-Fx]*\\.", ".") : methodName;
979979
}
980980
}

0 commit comments

Comments
 (0)