过滤多余接口

This commit is contained in:
huoyo 2020-12-11 23:38:18 +08:00
parent 98666154f6
commit 96de4ff314

View File

@ -32,7 +32,8 @@ public class GraphMap {
public static List<RunTimeNode> get(MethodType methodType) {
return runTimeNodeMap.values().stream()
.filter(runTimeNode -> runTimeNode.getMethodType()==methodType)
.filter(runTimeNode -> runTimeNode.getMethodType()==methodType &&
!runTimeNode.getMethodName().contains("lambda$") )
.sorted(Comparator.reverseOrder())
.collect(Collectors.toList());
}