From 9cfad8a17a0c00e690b313b80e21e7f062d277bf Mon Sep 17 00:00:00 2001 From: John Estropia Date: Wed, 19 Aug 2015 21:00:27 +0900 Subject: [PATCH] oops, GroupBy should not be needed for monitorList() --- CoreStore/Observing/CoreStore+Observing.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CoreStore/Observing/CoreStore+Observing.swift b/CoreStore/Observing/CoreStore+Observing.swift index ec3f9b5..b1d846b 100644 --- a/CoreStore/Observing/CoreStore+Observing.swift +++ b/CoreStore/Observing/CoreStore+Observing.swift @@ -51,7 +51,7 @@ public extension CoreStore { - parameter fetchClauses: a series of `FetchClause` instances for fetching the object list. Accepts `Where`, `OrderBy`, and `Tweak` clauses. - returns: a `ListMonitor` instance that monitors changes to the list */ - public static func monitorList(from: From, _ groupBy: GroupBy? = nil, _ queryClauses: FetchClause...) -> ListMonitor { + public static func monitorList(from: From, _ queryClauses: FetchClause...) -> ListMonitor { return self.defaultStack.monitorList(from, queryClauses) } @@ -63,7 +63,7 @@ public extension CoreStore { - parameter fetchClauses: a series of `FetchClause` instances for fetching the object list. Accepts `Where`, `OrderBy`, and `Tweak` clauses. - returns: a `ListMonitor` instance that monitors changes to the list */ - public static func monitorList(from: From, _ groupBy: GroupBy? = nil, _ queryClauses: [FetchClause]) -> ListMonitor { + public static func monitorList(from: From, _ queryClauses: [FetchClause]) -> ListMonitor { return self.defaultStack.monitorList(from, queryClauses) }