mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-05 01:50:56 +07:00
cleanup
GitOrigin-RevId: 840fc5a04665f2560a76447f394151270ead2774
This commit is contained in:
committed by
intellij-monorepo-bot
parent
986ce23323
commit
8dea809c37
@@ -23,6 +23,7 @@ import org.jetbrains.annotations.NotNull;
|
||||
import org.jetbrains.annotations.Nullable;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
public class PsiNewExpressionImpl extends ExpressionPsiElement implements PsiNewExpression {
|
||||
private static final Logger LOG = Logger.getInstance(PsiNewExpressionImpl.class);
|
||||
@@ -44,7 +45,7 @@ public class PsiNewExpressionImpl extends ExpressionPsiElement implements PsiNew
|
||||
|
||||
private @Nullable PsiType doGetType(@Nullable PsiAnnotation stopAt) {
|
||||
PsiType type = null;
|
||||
SmartList<PsiAnnotation> annotations = new SmartList<>();
|
||||
List<PsiAnnotation> annotations = new SmartList<>();
|
||||
boolean stop = false;
|
||||
|
||||
for (ASTNode child = getFirstChildNode(); child != null; child = child.getTreeNext()) {
|
||||
|
||||
Reference in New Issue
Block a user