From 7f65914f9352ade843fc486460a22e70f5e30bee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Je=CC=81ro=CC=82me=20Alves?= Date: Mon, 15 Aug 2016 17:53:13 +0200 Subject: [PATCH] Fix ActivityToken dispose type. --- RxExample/RxExample/Services/ActivityIndicator.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RxExample/RxExample/Services/ActivityIndicator.swift b/RxExample/RxExample/Services/ActivityIndicator.swift index b74d1ce6..e678378f 100644 --- a/RxExample/RxExample/Services/ActivityIndicator.swift +++ b/RxExample/RxExample/Services/ActivityIndicator.swift @@ -14,7 +14,7 @@ import RxCocoa private struct ActivityToken : ObservableConvertibleType, Disposable { private let _source: Observable - private let _dispose: AnonymousDisposable + private let _dispose: Cancelable init(source: Observable, disposeAction: () -> ()) { _source = source