mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
IDEA-173268 Emulated wildcard method breakpoint may be triggered on any lambda - fix for subinterfaces
This commit is contained in:
@@ -193,7 +193,7 @@ public class MethodBreakpoint extends BreakpointWithHighlighter<JavaMethodBreakp
|
||||
Method lambdaMethod = MethodBytecodeUtil.getLambdaMethod(classType, debugProcess.getVirtualMachineProxy());
|
||||
if (lambdaMethod != null &&
|
||||
!breakpoint
|
||||
.matchingMethods(StreamEx.of(((ClassType)classType).interfaces()).flatCollection(ReferenceType::methods), debugProcess)
|
||||
.matchingMethods(StreamEx.of(((ClassType)classType).interfaces()).flatCollection(ReferenceType::allMethods), debugProcess)
|
||||
.findFirst().isPresent()) {
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user