Add a pop front operation to ConcurrentOrderedList
[mono.git] / mcs / class / corlib / System.Runtime / TargetedPatchingOptOutAttribute.cs
index 721e6a644c8362f84ba91e05e4d45c7d7bb048cf..cdf75e3b00ff71e4561f7bc855fbd9b6c5d5c9c1 100644 (file)
@@ -31,16 +31,13 @@ using System.Runtime.InteropServices;
 
 #if NET_4_0
 
-namespace System.Runtime.CompilerServices {
+namespace System.Runtime {
 
        [AttributeUsage (AttributeTargets.Constructor|AttributeTargets.Method, AllowMultiple=false, Inherited = false)] 
        public sealed class TargetedPatchingOptOutAttribute : Attribute
        {
                string reason;
 
-               public TargetedPatchingOptOutAttribute () : this ("") {
-               }
-
                public TargetedPatchingOptOutAttribute (string reason)
                {
                        if (reason == null)
@@ -48,8 +45,7 @@ namespace System.Runtime.CompilerServices {
                        this.reason = reason;
                }
 
-               public string Reason
-               {
+               public string Reason {
                        get {
                                return reason;
                        }