mirror of
https://gitee.com/huoyo/ko-time.git
synced 2025-12-07 09:18:31 +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) {
|
public static List<RunTimeNode> get(MethodType methodType) {
|
||||||
return runTimeNodeMap.values().stream()
|
return runTimeNodeMap.values().stream()
|
||||||
.filter(runTimeNode -> runTimeNode.getMethodType()==methodType)
|
.filter(runTimeNode -> runTimeNode.getMethodType()==methodType &&
|
||||||
|
!runTimeNode.getMethodName().contains("lambda$") )
|
||||||
.sorted(Comparator.reverseOrder())
|
.sorted(Comparator.reverseOrder())
|
||||||
.collect(Collectors.toList());
|
.collect(Collectors.toList());
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user