Skip to content

Commit

Permalink
Fix sorting in libraries used in about tab
Browse files Browse the repository at this point in the history
  • Loading branch information
chrislo27 committed Apr 16, 2021
1 parent 6d79441 commit 7afb15c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/main/kotlin/rhmodding/bread/util/LibrariesUsed.kt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
package rhmodding.bread.util

import java.util.*

object LibrariesUsed {
data class Library(val name: String, val website: String)

Expand All @@ -10,5 +12,5 @@ object LibrariesUsed {
Library("Jackson", "https://github.com/FasterXML/jackson"),
Library("animated-gif-lib", "https://github.com/rtyley/animated-gif-lib-for-java"),
Library("JCodec", "https://github.com/jcodec/jcodec")
).sortedBy { it.name }
).sortedBy { it.name.toLowerCase(Locale.ROOT) }
}

0 comments on commit 7afb15c

Please sign in to comment.