mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
PY-15342 Use set as more natural container for scope owners of global statements
This commit is contained in:
@@ -34,7 +34,7 @@ public class PyMoveSymbolProcessor {
|
||||
private final List<UsageInfo> myUsages;
|
||||
private final PsiElement[] myAllMovedElements;
|
||||
private final List<PsiFile> myOptimizeImportTargets = new ArrayList<PsiFile>();
|
||||
private final List<ScopeOwner> myScopeOwnersWithGlobal = new ArrayList<ScopeOwner>();
|
||||
private final Set<ScopeOwner> myScopeOwnersWithGlobal = new HashSet<ScopeOwner>();
|
||||
|
||||
public PyMoveSymbolProcessor(@NotNull final PsiNamedElement element,
|
||||
@NotNull PyFile destination,
|
||||
|
||||
Reference in New Issue
Block a user