Remove NET_1_1 directive from FormatterServices.cs.
[mono.git] / mcs / class / corlib / System.Runtime.Serialization / StreamingContext.cs
index 60d28a310a701083d9d28fde4923e17b69a0e380..2ad691a1ab924cf53975cc551db5c4ed123e8631 100644 (file)
@@ -33,9 +33,7 @@
 namespace System.Runtime.Serialization {
 
        [Serializable]
-#if NET_2_0
        [System.Runtime.InteropServices.ComVisibleAttribute (true)]
-#endif
        public struct StreamingContext {
                StreamingContextStates state;
                object additional;
@@ -64,14 +62,14 @@ namespace System.Runtime.Serialization {
                        }
                }
 
-               override public bool Equals (Object o)
+               override public bool Equals (Object obj)
                {
                        StreamingContext other;
                        
-                       if (!(o is StreamingContext))
+                       if (!(obj is StreamingContext))
                                return false;
 
-                       other = (StreamingContext) o;
+                       other = (StreamingContext) obj;
 
                        return (other.state == this.state) && (other.additional == this.additional);
                }