[runtime] Updates comments.
[mono.git] / mcs / class / corlib / System / OperationCanceledException.cs
index d3bb1ab2c17e4f57bb8617cda45970413d1db734..6849961a0760f25db350f168579fe7f996d7ffb4 100644 (file)
@@ -38,9 +38,7 @@ namespace System
        public class OperationCanceledException : SystemException
        {
                const int Result = unchecked ((int)0x8013153b);
-#if NET_4_0 || MOBILE
                CancellationToken? token;
-#endif
 
                // Constructors
                public OperationCanceledException ()
@@ -66,7 +64,6 @@ namespace System
                {
                }
                
-#if NET_4_0 || MOBILE
                public OperationCanceledException (CancellationToken token)
                        : this ()
                {
@@ -92,6 +89,5 @@ namespace System
                                return token.Value;
                        }
                }
-#endif
        }
 }