소스 검색

code cleaning

Bastian van de Wetering 6 년 전
부모
커밋
25c7525361
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 4
      deltachat-ios/Controller/AccountSetupController.swift

+ 2 - 4
deltachat-ios/Controller/AccountSetupController.swift

@@ -272,8 +272,6 @@ class AccountSetupController: UITableViewController {
 		}
 	}
 
-
-
 	override func tableView(_: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
 		let section = indexPath.section
 		let row = indexPath.row
@@ -523,11 +521,11 @@ class AccountSetupController: UITableViewController {
 	}
 
 	private func resignFirstResponderOnAllCells() {
-		basicSectionCells.map({
+		let _ = basicSectionCells.map({
 			resignCell(cell: $0)
 		})
 
-		advancedSectionCells.map({
+		let _ = advancedSectionCells.map({
 			resignCell(cell: $0)
 			}
 		)