Fix a warning
Use a variable to store return value to avoid warning.
This commit is contained in:
parent
5a02cb726e
commit
d83b17c629
1 changed files with 1 additions and 1 deletions
|
|
@ -213,7 +213,7 @@ class PasswordDetailTableViewController: UITableViewController, UIGestureRecogni
|
|||
@IBAction private func deletePassword(segue: UIStoryboardSegue) {
|
||||
print("delete")
|
||||
passwordStore.delete(passwordEntity: passwordEntity!)
|
||||
navigationController?.popViewController(animated: true)
|
||||
let _ = navigationController?.popViewController(animated: true)
|
||||
}
|
||||
|
||||
private func setTableData() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue