[corlib] Fixed StringBuilder construction bugs in marshalling caused by changes to...
[mono.git] / mcs / class / corlib / System.Runtime.Serialization / FormatterServices.cs
index 4e9338b2f5929235ec41835c0e8ac4af114a1fc7..e2a8702befaeddde56684502e24e96878c699031 100644 (file)
@@ -40,11 +40,7 @@ using System.Globalization;
 namespace System.Runtime.Serialization
 {
        [System.Runtime.InteropServices.ComVisibleAttribute (true)]
-#if NET_4_5
        static
-#else
-       sealed
-#endif
        public class FormatterServices
        {
                private const BindingFlags fieldFlags = BindingFlags.Public |
@@ -52,11 +48,6 @@ namespace System.Runtime.Serialization
                                                        BindingFlags.NonPublic |
                                                        BindingFlags.DeclaredOnly;
 
-#if !NET_4_5
-               private FormatterServices ()
-               {
-               }
-#endif
 
                public static object [] GetObjectData (object obj, MemberInfo [] members)
                {