Add a pop front operation to ConcurrentOrderedList
[mono.git] / mcs / class / corlib / System.Runtime / TargetedPatchingOptOutAttribute.cs
index 23854a4cf5c302c5a3b53d1964af292bf26744ca..cdf75e3b00ff71e4561f7bc855fbd9b6c5d5c9c1 100644 (file)
@@ -38,9 +38,6 @@ namespace System.Runtime {
        {
                string reason;
 
-               public TargetedPatchingOptOutAttribute () : this ("") {
-               }
-
                public TargetedPatchingOptOutAttribute (string reason)
                {
                        if (reason == null)
@@ -48,8 +45,7 @@ namespace System.Runtime {
                        this.reason = reason;
                }
 
-               public string Reason
-               {
+               public string Reason {
                        get {
                                return reason;
                        }