Fix array merging

This commit is contained in:
Roman Shevchenko
2011-09-22 13:37:35 +02:00
parent a069d68c57
commit 94749f5c5b
2 changed files with 10 additions and 2 deletions
@@ -1,5 +1,5 @@
/*
* Copyright 2000-2009 JetBrains s.r.o.
* Copyright 2000-2011 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -15,6 +15,7 @@
*/
package com.intellij.psi;
import com.intellij.util.ArrayFactory;
import org.jetbrains.annotations.Nullable;
/**
@@ -28,6 +29,13 @@ public interface PsiImportStatementBase extends PsiElement {
*/
PsiImportStatementBase[] EMPTY_ARRAY = new PsiImportStatementBase[0];
ArrayFactory<PsiImportStatementBase> ARRAY_FACTORY = new ArrayFactory<PsiImportStatementBase>() {
@Override
public PsiImportStatementBase[] create(final int count) {
return count == 0 ? EMPTY_ARRAY : new PsiImportStatementBase[count];
}
};
/**
* Checks if the statement represents a single element or on-demand import.
*