From c5fc45ce7d8f83042420fa992aa9fc23efb0f555 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Mon, 12 Jan 2015 13:25:58 +0100 Subject: code review --- src/Formats/StructuredFormatService.kt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/Formats') diff --git a/src/Formats/StructuredFormatService.kt b/src/Formats/StructuredFormatService.kt index 51222ffb..0301543c 100644 --- a/src/Formats/StructuredFormatService.kt +++ b/src/Formats/StructuredFormatService.kt @@ -1,7 +1,6 @@ package org.jetbrains.dokka import java.util.LinkedHashMap -import com.intellij.openapi.util.text.StringUtil public data class FormatLink(val text: String, val location: Location) @@ -125,7 +124,7 @@ public abstract class StructuredFormatService(val locationService: LocationServi val deprecationValue = deprecationParameter?.details(DocumentationNode.Kind.Value)?.firstOrNull() if (deprecationValue != null) { to.append(formatStrong("Deprecated: ")) - appendLine(to, formatText(StringUtil.unquoteString(deprecationValue.name))) + appendLine(to, formatText(deprecationValue.name.substring(0, deprecationValue.name.length()-1))) } else { appendLine(to, formatStrong("Deprecated")) } -- cgit