From 4b11dc566a5bbfa1378d6266525c281b028abcc8 Mon Sep 17 00:00:00 2001 From: Jiyoung Yun Date: Fri, 10 Feb 2017 20:35:12 +0900 Subject: Imported Upstream version 1.0.0.9910 --- src/mscorlib/src/System/IObservable.cs | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'src/mscorlib/src/System/IObservable.cs') diff --git a/src/mscorlib/src/System/IObservable.cs b/src/mscorlib/src/System/IObservable.cs index c231c45485..aabb0b8fb4 100644 --- a/src/mscorlib/src/System/IObservable.cs +++ b/src/mscorlib/src/System/IObservable.cs @@ -2,23 +2,10 @@ // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. -/*============================================================ -** -** -** -** -** -** Purpose: Interface for exposing an Observable in the -** Observer pattern -** -** -===========================================================*/ - namespace System { public interface IObservable { IDisposable Subscribe(IObserver observer); } - } -- cgit v1.2.3