From fe69f752ea39dcd5ca1f6fe55389a5be2329aef3 Mon Sep 17 00:00:00 2001 From: Krunoslav Zaher Date: Sat, 7 Oct 2017 17:15:22 +0200 Subject: [PATCH] Removes warning of sequence completion from `Binder`. #1431 --- RxCocoa/Common/Binder.swift | 3 --- 1 file changed, 3 deletions(-) diff --git a/RxCocoa/Common/Binder.swift b/RxCocoa/Common/Binder.swift index f5db211bb..129af5670 100644 --- a/RxCocoa/Common/Binder.swift +++ b/RxCocoa/Common/Binder.swift @@ -42,9 +42,6 @@ public struct Binder: ObserverType { case .error(let error): bindingError(error) case .completed: - #if DEBUG - print("Source observable sequence has completed and no further element will be bound. This may be something unexpected.") - #endif break } }