diff --git a/compiler/frontend/src/org/jetbrains/jet/lang/psi/stubs/elements/JetFunctionElementType.java b/compiler/frontend/src/org/jetbrains/jet/lang/psi/stubs/elements/JetFunctionElementType.java index d94206f2cad..aadf39076af 100644 --- a/compiler/frontend/src/org/jetbrains/jet/lang/psi/stubs/elements/JetFunctionElementType.java +++ b/compiler/frontend/src/org/jetbrains/jet/lang/psi/stubs/elements/JetFunctionElementType.java @@ -57,7 +57,8 @@ public class JetFunctionElementType extends JetStubElementType implement private final boolean hasBlockBody; private final boolean hasBody; - public PsiJetFunctionStubImpl( - @NotNull StubElement parent, - @Nullable String name, - boolean isTopLevel, - @Nullable FqName fqName, - boolean isExtension, - boolean hasBlockBody, - boolean hasBody - ) { - this(parent, StringRef.fromString(name), isTopLevel, fqName, isExtension, hasBlockBody, hasBody); - } - public PsiJetFunctionStubImpl( @NotNull StubElement parent, @Nullable StringRef nameRef,