aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/src/main/kotlin/Formats/PackageListService.kt4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/main/kotlin/Formats/PackageListService.kt b/core/src/main/kotlin/Formats/PackageListService.kt
index 360dbb46..e7f4e952 100644
--- a/core/src/main/kotlin/Formats/PackageListService.kt
+++ b/core/src/main/kotlin/Formats/PackageListService.kt
@@ -52,9 +52,9 @@ class DefaultPackageListService @Inject constructor(locationService: FileLocatio
appendln("\$dokka.linkExtension:${formatService.linkExtension}")
nonStandardLocations.map { (signature, location) -> "\$dokka.location:$signature\u001f$location" }
- .joinTo(this, separator = "\n", postfix = "\n")
+ .sorted().joinTo(this, separator = "\n", postfix = "\n")
- packages.joinTo(this, separator = "\n", postfix = "\n")
+ packages.sorted().joinTo(this, separator = "\n", postfix = "\n")
}
}