We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93753d1 commit e49c097Copy full SHA for e49c097
substratevm/src/com.oracle.graal.pointsto/src/com/oracle/graal/pointsto/meta/AnalysisMethod.java
@@ -975,6 +975,6 @@ public boolean getReturnsAllInstantiatedTypes() {
975
*/
976
public static String comparingMethodNames(AnalysisMethod method) {
977
String methodName = method.format("%H.%n(%P):%R");
978
- return methodName.contains("$$Lambda$") ? methodName.replaceAll("/[0-9a-fA-Fx]*\\.", ".") : methodName;
+ return methodName.contains("$$Lambda") ? methodName.replaceAll("/[0-9a-fA-Fx]*\\.", ".") : methodName;
979
}
980
0 commit comments