From 73eca647694088c56325ebbcde37070d125dae7f Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Tue, 1 Sep 2015 20:52:35 +0300 Subject: [PATCH] Minor: too long lines --- .../frontend/src/org/jetbrains/kotlin/psi/JetClassOrObject.kt | 3 ++- .../jetbrains/kotlin/psi/JetTypeParameterListOwnerStub.java | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/compiler/frontend/src/org/jetbrains/kotlin/psi/JetClassOrObject.kt b/compiler/frontend/src/org/jetbrains/kotlin/psi/JetClassOrObject.kt index c978a50d358..5fb2686f185 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/psi/JetClassOrObject.kt +++ b/compiler/frontend/src/org/jetbrains/kotlin/psi/JetClassOrObject.kt @@ -32,7 +32,8 @@ import org.jetbrains.kotlin.lexer.JetTokens import org.jetbrains.kotlin.psi.stubs.KotlinClassOrObjectStub import org.jetbrains.kotlin.psi.stubs.elements.JetStubElementTypes -abstract public class JetClassOrObject : JetTypeParameterListOwnerStub>, JetDeclarationContainer, JetNamedDeclaration { +abstract public class JetClassOrObject : + JetTypeParameterListOwnerStub>, JetDeclarationContainer, JetNamedDeclaration { public constructor(node: ASTNode) : super(node) public constructor(stub: KotlinClassOrObjectStub, nodeType: IStubElementType<*, *>) : super(stub, nodeType) diff --git a/compiler/frontend/src/org/jetbrains/kotlin/psi/JetTypeParameterListOwnerStub.java b/compiler/frontend/src/org/jetbrains/kotlin/psi/JetTypeParameterListOwnerStub.java index c3f8be8992e..457c746b950 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/psi/JetTypeParameterListOwnerStub.java +++ b/compiler/frontend/src/org/jetbrains/kotlin/psi/JetTypeParameterListOwnerStub.java @@ -26,7 +26,8 @@ import org.jetbrains.kotlin.psi.stubs.elements.JetStubElementTypes; import java.util.Collections; import java.util.List; -public abstract class JetTypeParameterListOwnerStub> extends JetNamedDeclarationStub implements JetTypeParameterListOwner { +public abstract class JetTypeParameterListOwnerStub> + extends JetNamedDeclarationStub implements JetTypeParameterListOwner { public JetTypeParameterListOwnerStub(@NotNull T stub, @NotNull IStubElementType nodeType) { super(stub, nodeType); }