Skip to content

Commit b099051

Browse files
committed
fix lambda class filter. #3010
1 parent 1140fa0 commit b099051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/src/main/java/com/taobao/arthas/core/util/ClassUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public static String getCodeSource(final CodeSource cs) {
3838
}
3939

4040
public static boolean isLambdaClass(Class<?> clazz) {
41-
return clazz.getName().contains("$$Lambda$");
41+
return clazz.getName().contains("$$Lambda");
4242
}
4343

4444
public static Element renderClassInfo(ClassDetailVO clazz) {

0 commit comments

Comments
 (0)