Browse Source

Mon Sep 9 17:31:12 CEST 2002 Paolo Molaro <[email protected]>

	* TypeBuilder.cs: prepare for the real CreateType implementation.

svn path=/trunk/mcs/; revision=7331
Paolo Molaro 23 years ago
parent
commit
d893e4d96c

+ 4 - 0
mcs/class/corlib/System.Reflection.Emit/ChangeLog

@@ -1,4 +1,8 @@
 
+Mon Sep 9 17:31:12 CEST 2002 Paolo Molaro <[email protected]>
+
+	* TypeBuilder.cs: prepare for the real CreateType implementation.
+
 Tue Aug 27 16:57:18 CEST 2002 Paolo Molaro <[email protected]>
 
 	* TypeBuilder.cs: remove duplicate code and fix

+ 2 - 1
mcs/class/corlib/System.Reflection.Emit/TypeBuilder.cs

@@ -316,7 +316,8 @@ namespace System.Reflection.Emit {
 				}
 			}
 			created = create_runtime_class (this);
-
+			if (created != null)
+				return created;
 			return this;
 		}