Переглянути джерело

* Context.cs: Added finalizer to match MS.NET

svn path=/trunk/mcs/; revision=29081
Gert Driesen 21 роки тому
батько
коміт
8f4b677f58

+ 4 - 0
mcs/class/corlib/System.Runtime.Remoting.Contexts/ChangeLog

@@ -1,3 +1,7 @@
+2004-06-09  Gert Driesen <[email protected]>
+	
+	* Context.cs: Added finalizer to match MS.NET
+
 2003-12-23  Lluis Sanchez Gual  <[email protected]>
 
 	* SynchronizationAttribute.cs: Several bug fixes.

+ 4 - 0
mcs/class/corlib/System.Runtime.Remoting.Contexts/Context.cs

@@ -52,6 +52,10 @@ namespace System.Runtime.Remoting.Contexts {
 			context_id = 1 + global_count++;
 		}
 
+		~Context ()
+		{
+		}
+
 		public static Context DefaultContext {
 			get {
 				return AppDomain.InternalGetDefaultContext ();