aboutsummaryrefslogtreecommitdiff
path: root/src/Formats
diff options
context:
space:
mode:
authorIlya Ryzhenkov <orangy@jetbrains.com>2014-08-21 19:53:36 +0400
committerIlya Ryzhenkov <orangy@jetbrains.com>2014-08-21 19:53:36 +0400
commitbd494a8384ef3e46d6a9e5035c6cac750edcd270 (patch)
tree278f8a4ea72c5993d981edc8b352da21c267dd29 /src/Formats
parentc86f6f5dac3aae2e4b26e911ad0d3b8e88c65375 (diff)
downloaddokka-bd494a8384ef3e46d6a9e5035c6cac750edcd270.tar.gz
dokka-bd494a8384ef3e46d6a9e5035c6cac750edcd270.tar.bz2
dokka-bd494a8384ef3e46d6a9e5035c6cac750edcd270.zip
LinkedHashMap is now default for groupBy in stdlib.
Diffstat (limited to 'src/Formats')
-rw-r--r--src/Formats/StructuredFormatService.kt8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Formats/StructuredFormatService.kt b/src/Formats/StructuredFormatService.kt
index 13af77ce..5ec86486 100644
--- a/src/Formats/StructuredFormatService.kt
+++ b/src/Formats/StructuredFormatService.kt
@@ -65,7 +65,7 @@ public abstract class StructuredFormatService(val locationService: LocationServi
}
open public fun appendLocation(to: StringBuilder, nodes: Iterable<DocumentationNode>) {
- val breakdownByName = nodes.groupByTo(LinkedHashMap()) { node -> node.name }
+ val breakdownByName = nodes.groupBy { node -> node.name }
for ((name, items) in breakdownByName) {
appendHeader(to, formatText(name))
appendSummary(to, items)
@@ -74,7 +74,7 @@ public abstract class StructuredFormatService(val locationService: LocationServi
}
override fun appendNodes(to: StringBuilder, nodes: Iterable<DocumentationNode>) {
- val breakdownByLocation = nodes.groupByTo(LinkedHashMap()) { node ->
+ val breakdownByLocation = nodes.groupBy { node ->
formatBreadcrumbs(node.path.map { link(node, it) })
}
@@ -89,7 +89,7 @@ public abstract class StructuredFormatService(val locationService: LocationServi
appendHeader(to, "Members", 3)
val children = node.members.sortBy { it.name }
- val membersMap = children.groupByTo(LinkedHashMap()) { link(node, it) }
+ val membersMap = children.groupBy { link(node, it) }
appendTable(to) {
appendTableBody(to) {
@@ -99,7 +99,7 @@ public abstract class StructuredFormatService(val locationService: LocationServi
appendText(to, formatLink(location))
}
appendTableCell(to) {
- val breakdownBySummary = members.groupByTo(LinkedHashMap()) { it.doc.summary }
+ val breakdownBySummary = members.groupBy { it.doc.summary }
for ((summary, items) in breakdownBySummary) {
if (!summary.isEmpty()) {
appendText(to, formatText(summary))