From a17a3f7e48f59dc1b420f7b31a6466da2748692d Mon Sep 17 00:00:00 2001 From: Davide De Rosa Date: Fri, 17 May 2019 08:08:09 +0200 Subject: [PATCH] Sort constants alphabetically (case-insensitive) --- Passepartout/Sources/AppConstants.swift | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Passepartout/Sources/AppConstants.swift b/Passepartout/Sources/AppConstants.swift index e67105ee..2ecdc4e7 100644 --- a/Passepartout/Sources/AppConstants.swift +++ b/Passepartout/Sources/AppConstants.swift @@ -155,9 +155,9 @@ public class AppConstants { } public static let authorByLanguage: [String: String] = [ + "de": "Christian Lederer", "it": "Davide De Rosa", "pt-BR": "Helder Santana", - "de": "Christian Lederer", "ru": "Alexander Korobynikov" ] } @@ -251,6 +251,11 @@ public class AppConstants { } public static let all: [License] = [ + License( + "lzo", + "GPLv2", + "https://www.gnu.org/licenses/gpl-2.0.txt" + ), License( "MBProgressHUD", "MIT", @@ -280,11 +285,6 @@ public class AppConstants { "SwiftyBeaver", "MIT", "https://raw.githubusercontent.com/SwiftyBeaver/SwiftyBeaver/master/LICENSE" - ), - License( - "lzo", - "GPLv2", - "https://www.gnu.org/licenses/gpl-2.0.txt" ) ]