diff options
Diffstat (limited to 'plugins/base/src/main/kotlin/utils/alphabeticalOrder.kt')
-rw-r--r-- | plugins/base/src/main/kotlin/utils/alphabeticalOrder.kt | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/plugins/base/src/main/kotlin/utils/alphabeticalOrder.kt b/plugins/base/src/main/kotlin/utils/alphabeticalOrder.kt deleted file mode 100644 index ed620b34..00000000 --- a/plugins/base/src/main/kotlin/utils/alphabeticalOrder.kt +++ /dev/null @@ -1,11 +0,0 @@ -/* - * Copyright 2014-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. - */ - -package org.jetbrains.dokka.base.utils - - -/** - * Canonical alphabetical order to sort named elements - */ -internal val canonicalAlphabeticalOrder: Comparator<in String> = String.CASE_INSENSITIVE_ORDER.thenBy { it } |