mirror of
https://gitee.com/huoyo/ko-time.git
synced 2025-12-06 16:58:26 +08:00
过滤多余接口
This commit is contained in:
parent
98666154f6
commit
96de4ff314
@ -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());
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user