From: Roopesh Chander Date: Mon, 21 Jan 2019 20:14:07 +0000 (+0530) Subject: Avoid using return in single-line closures X-Git-Tag: 0.0.20190207-1~85 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b22aeaeb20994620e4dd35bacf9c0bccd7ce54b6;p=thirdparty%2Fwireguard-apple.git Avoid using return in single-line closures Signed-off-by: Roopesh Chander --- diff --git a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelEditTableViewController.swift b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelEditTableViewController.swift index 01a197f..02328af 100644 --- a/WireGuard/WireGuard/UI/iOS/ViewController/TunnelEditTableViewController.swift +++ b/WireGuard/WireGuard/UI/iOS/ViewController/TunnelEditTableViewController.swift @@ -243,7 +243,7 @@ extension TunnelEditTableViewController { cell.placeholderText = tr("tunnelEditPlaceholderTextStronglyRecommended") cell.keyboardType = .numbersAndPunctuation case .dns: - cell.placeholderText = tunnelViewModel.peersData.contains(where: { return $0.shouldStronglyRecommendDNS }) ? tr("tunnelEditPlaceholderTextStronglyRecommended") : tr("tunnelEditPlaceholderTextOptional") + cell.placeholderText = tunnelViewModel.peersData.contains(where: { $0.shouldStronglyRecommendDNS }) ? tr("tunnelEditPlaceholderTextStronglyRecommended") : tr("tunnelEditPlaceholderTextOptional") cell.keyboardType = .numbersAndPunctuation case .listenPort, .mtu: cell.placeholderText = tr("tunnelEditPlaceholderTextAutomatic") diff --git a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift index cdc6d44..ef51e19 100644 --- a/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift +++ b/WireGuard/WireGuard/UI/macOS/ViewController/TunnelEditViewController.swift @@ -130,9 +130,7 @@ class TunnelEditViewController: NSViewController { selectedActivateOnDemandOption = .none } - onDemandRow.valueOptions = activateOnDemandOptions.map { - return TunnelViewModel.activateOnDemandOptionText(for: $0) - } + onDemandRow.valueOptions = activateOnDemandOptions.map { TunnelViewModel.activateOnDemandOptionText(for: $0) } onDemandRow.selectedOptionIndex = activateOnDemandOptions.firstIndex(of: selectedActivateOnDemandOption)! }