Suppress warning on unused if let

This commit is contained in:
Davide De Rosa 2019-09-17 17:22:26 +02:00
parent 4bc35efcca
commit 7c532e94af
1 changed files with 1 additions and 1 deletions

View File

@ -112,7 +112,7 @@ class AccountViewController: UIViewController, TableModelHost {
model.setHeader(L10n.App.Account.Sections.Credentials.header, for: .credentials)
model.set([.username, .password], in: .credentials)
if let name = infrastructureName {
if let _ = infrastructureName {
if let guidanceString = guidanceString {
if let _ = guidanceURL {
model.add(.guidance)