Browse Source

2008-05-14 Atsushi Enomoto <[email protected]>

	* TypedTableBase.cs : serialization .ctor() does nothing here (it
	  might do something in derived types. no need to throw NIE here).


svn path=/trunk/mcs/; revision=103158
Atsushi Eno 17 years ago
parent
commit
3aeedf2140

+ 5 - 0
mcs/class/System.Data.DataSetExtensions/System.Data/ChangeLog

@@ -1,3 +1,8 @@
+2008-05-14  Atsushi Enomoto  <[email protected]>
+
+	* TypedTableBase.cs : serialization .ctor() does nothing here (it
+	  might do something in derived types. no need to throw NIE here).
+
 2008-05-14  Atsushi Enomoto  <[email protected]>
 
 	* EnumerableRowCollectionExtensions.cs,

+ 0 - 2
mcs/class/System.Data.DataSetExtensions/System.Data/TypedTableBase.cs

@@ -44,11 +44,9 @@ namespace System.Data
 		{
 		}
 
-		[MonoTODO]
 		protected TypedTableBase (SerializationInfo info, StreamingContext context)
 			: base (info, context)
 		{
-			throw new NotImplementedException ();
 		}
 
 		public EnumerableRowCollection<TResult> Cast<TResult> ()