From bf130676a8045df5accdab13789b4ed5917a85c1 Mon Sep 17 00:00:00 2001 From: Valentin Kipyatkov Date: Thu, 27 Nov 2014 20:09:10 +0300 Subject: [PATCH] Minor --- .../org/jetbrains/jet/plugin/completion/LookupElementFactory.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/src/org/jetbrains/jet/plugin/completion/LookupElementFactory.kt b/idea/src/org/jetbrains/jet/plugin/completion/LookupElementFactory.kt index f0e00710424..943a0bf0e4b 100644 --- a/idea/src/org/jetbrains/jet/plugin/completion/LookupElementFactory.kt +++ b/idea/src/org/jetbrains/jet/plugin/completion/LookupElementFactory.kt @@ -83,7 +83,7 @@ public open class LookupElementFactory protected() { is ClassDescriptor -> { val typeParams = descriptor.getTypeConstructor().getParameters() if (typeParams.isNotEmpty()) { - element = element.appendTailText("<" + typeParams.map { it.getName().asString() }.joinToString(", ") + ">", true) + element = element.appendTailText(typeParams.map { it.getName().asString() }.joinToString(", ", "<", ">"), true) } element = element.appendTailText(" (" + DescriptorUtils.getFqName(descriptor.getContainingDeclaration()) + ")", true)