mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
fix SOE
GitOrigin-RevId: 56a22c6d87036b460e84393d9f230b4661f1030e
This commit is contained in:
committed by
intellij-monorepo-bot
parent
1da569bec1
commit
3307f26b5e
@@ -498,7 +498,7 @@ public final class JavaPsiModuleUtil {
|
||||
Iterator<PsiJavaModule> directReaders = myGraph.getOut(destination);
|
||||
while (directReaders.hasNext()) {
|
||||
PsiJavaModule next = directReaders.next();
|
||||
if (source.equals(next) || myTransitiveEdges.contains(key(destination, next)) && reads(source, next)) {
|
||||
if (source.equals(next) || myTransitiveEdges.contains(key(destination, next)) && !next.equals(destination) && reads(source, next)) {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user