From cbbcb861bbadc62d518098516c6a4e0c55fd67c7 Mon Sep 17 00:00:00 2001 From: "Pavel V. Talanov" Date: Mon, 7 Apr 2014 19:33:46 +0400 Subject: [PATCH] JetTypeConstraintList#getConstraints() by stub --- .../src/org/jetbrains/jet/lang/psi/JetTypeConstraintList.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/psi/JetTypeConstraintList.java b/compiler/frontend/src/org/jetbrains/jet/lang/psi/JetTypeConstraintList.java index e087ac90458..57d8b806147 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/psi/JetTypeConstraintList.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/psi/JetTypeConstraintList.java @@ -40,6 +40,6 @@ public class JetTypeConstraintList extends JetElementImplStub getConstraints() { - return findChildrenByType(JetNodeTypes.TYPE_CONSTRAINT); + return getStubOrPsiChildrenAsList(JetStubElementTypes.TYPE_CONSTRAINT); } }