This commit is contained in:
Alexey Kudravtsev
2012-07-18 15:19:32 +04:00
parent 4d7c3c0231
commit 19d50bbde0
3 changed files with 5 additions and 5 deletions
@@ -87,7 +87,7 @@ public class ExternalAnnotationsManagerImpl extends ExternalAnnotationsManager {
@NotNull private final ConcurrentMap<String, List<XmlFile>> myExternalAnnotations = new ConcurrentWeakValueHashMap<String, List<XmlFile>>();
@NotNull private volatile ThreeState myHasAnyAnnotationsRoots = ThreeState.UNSURE;
@NotNull private static final List<XmlFile> NULL = new ArrayList<XmlFile>();
@NotNull private static final List<XmlFile> NULL = new ArrayList<XmlFile>(0);
private final PsiManager myPsiManager;
public ExternalAnnotationsManagerImpl(@NotNull final Project project, final PsiManager psiManager) {