From 05d750539b91eff582ff6a789fcdcab73bb5f7bb Mon Sep 17 00:00:00 2001 From: Eric Kuck Date: Thu, 13 Dec 2018 12:58:50 -0600 Subject: Reorganized ViewControllers (split out UIViews and UITableViewCells into their own classes) All swiftlint warnings except one fixed up Signed-off-by: Eric Kuck --- WireGuard/WireGuard/ZipArchive/ZipImporter.swift | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'WireGuard/WireGuard/ZipArchive/ZipImporter.swift') diff --git a/WireGuard/WireGuard/ZipArchive/ZipImporter.swift b/WireGuard/WireGuard/ZipArchive/ZipImporter.swift index 523614b..e87633c 100644 --- a/WireGuard/WireGuard/ZipArchive/ZipImporter.swift +++ b/WireGuard/WireGuard/ZipArchive/ZipImporter.swift @@ -6,11 +6,8 @@ import UIKit enum ZipImporterError: WireGuardAppError { case noTunnelsInZipArchive - func alertText() -> AlertText { - switch self { - case .noTunnelsInZipArchive: - return ("No tunnels in zip archive", "No .conf tunnel files were found inside the zip archive.") - } + var alertText: AlertText { + return ("No tunnels in zip archive", "No .conf tunnel files were found inside the zip archive.") } } -- cgit v1.2.3-59-g8ed1b