mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
[debugger] avoid scanning all classes in vm for nested sub classes - fixed kotlin tests
GitOrigin-RevId: e5fee6bd9579af0282e24bbba80a1054f7a083b9
This commit is contained in:
committed by
intellij-monorepo-bot
parent
87b49d65b2
commit
0a33108740
@@ -133,7 +133,8 @@ public class VirtualMachineProxyImpl implements JdiTimer, VirtualMachineProxy {
|
||||
/**
|
||||
* Check {@link ReferenceTypeImpl#nestedTypes()}
|
||||
*/
|
||||
private static void addNestedTypes(ReferenceType base, Collection<ReferenceType> classes, Set<ReferenceType> nested) {
|
||||
@ApiStatus.Internal
|
||||
public static void addNestedTypes(ReferenceType base, Collection<ReferenceType> classes, Collection<ReferenceType> nested) {
|
||||
String baseName = base.name();
|
||||
int baseLength = baseName.length();
|
||||
classes.forEach(type -> {
|
||||
|
||||
Reference in New Issue
Block a user