From 7c9bf79b937aac8e3ac49dae527988bb5c868bf4 Mon Sep 17 00:00:00 2001 From: Oliver Wiese <oliver.wiese@fu-berlin.de> Date: Thu, 4 Apr 2019 12:41:20 +0200 Subject: [PATCH] clean code --- enzevalos_iphone/IntroTableView.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/enzevalos_iphone/IntroTableView.swift b/enzevalos_iphone/IntroTableView.swift index cedcab33..cadbdf5e 100644 --- a/enzevalos_iphone/IntroTableView.swift +++ b/enzevalos_iphone/IntroTableView.swift @@ -17,7 +17,7 @@ class IntroTableView: UITableView { for touch in touches { if touch.tapCount == 2 || touch.force > 1.0 { let point = touch.location(in: self) - let index = indexPathForRow(at: point) + _ = indexPathForRow(at: point) } } } -- GitLab