mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
fix dom implementation mapping
This commit is contained in:
@@ -68,12 +68,11 @@ class ImplementationClassCache {
|
||||
for (DomImplementationClassEP value : values) {
|
||||
if (value.getInterfaceClass() == concreteInterface) {
|
||||
results.add(value.getImplementationClass());
|
||||
return;
|
||||
}
|
||||
}
|
||||
if (results.isEmpty()) {
|
||||
for (final Class aClass1 : ReflectionCache.getInterfaces(concreteInterface)) {
|
||||
findImplementationClassDFS(aClass1, results);
|
||||
}
|
||||
for (final Class aClass1 : ReflectionCache.getInterfaces(concreteInterface)) {
|
||||
findImplementationClassDFS(aClass1, results);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user