From 3ba9f45ded18e25898099bdf3c15988f77c50081 Mon Sep 17 00:00:00 2001 From: Max Sokolov Date: Mon, 24 Oct 2016 17:40:59 +0300 Subject: [PATCH] action fix --- Sources/TableRowAction.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/TableRowAction.swift b/Sources/TableRowAction.swift index 40760cb..34b9911 100644 --- a/Sources/TableRowAction.swift +++ b/Sources/TableRowAction.swift @@ -46,7 +46,7 @@ private enum TableRowActionHandler where CellType: U switch self { case .voidAction(let handler): handler(options) - return nil + return () case .action(let handler): return handler(options) }