Selaa lähdekoodia

Removing inline parameter comments

Jonas Björkert 1 vuosi sitten
vanhempi
commit
c83d19a64f

+ 4 - 4
Trio/Sources/Services/AppVersionChecker/AppVersionChecker.swift

@@ -118,10 +118,10 @@ final class AppVersionChecker {
      - isBlacklisted: `true` if the current version is blacklisted.
      */
     func refreshVersionInfo(completion: @escaping (
-        String,    /* currentVersion */
-        String?,   /* latestVersion */
-        Bool,      /* isNewer */
-        Bool       /* isBlacklisted */
+        String,
+        String?,
+        Bool,
+        Bool
     ) -> Void) {
         let currentVersion = version()
         checkForNewVersion { latestVersion, isNewer, isBlacklisted in