Author: atsushi
Date: 2005-03-11 02:08:20 -0500 (Fri, 11 Mar 2005)
New Revision: 41677

Modified:
   trunk/mcs/mcs/ChangeLog
   trunk/mcs/mcs/doc.cs
Log:
2004-03-11  Atsushi Enomoto  <[EMAIL PROTECTED]>

        * doc.cs : just eliminate the latest change.



Modified: trunk/mcs/mcs/ChangeLog
===================================================================
--- trunk/mcs/mcs/ChangeLog     2005-03-11 06:03:53 UTC (rev 41676)
+++ trunk/mcs/mcs/ChangeLog     2005-03-11 07:08:20 UTC (rev 41677)
@@ -1,3 +1,7 @@
+2004-03-11  Atsushi Enomoto  <[EMAIL PROTECTED]>
+
+       * doc.cs : just eliminate the latest change.
+
 2004-03-10  Atsushi Enomoto  <[EMAIL PROTECTED]>
 
        * doc.cs : commented out the latest change. It breaks xml-030.cs

Modified: trunk/mcs/mcs/doc.cs
===================================================================
--- trunk/mcs/mcs/doc.cs        2005-03-11 06:03:53 UTC (rev 41676)
+++ trunk/mcs/mcs/doc.cs        2005-03-11 07:08:20 UTC (rev 41677)
@@ -275,30 +275,6 @@
                                }
                        }
                        Type t = FindDocumentedTypeNonArray (mc, identifier, 
ds, cref);
-/*
-FIXME: this breaks xml-030.cs. Comment out for now.
-                       // This step is required to make sure that the Type can
-                       // lookup members. At least for events, non-created
-                       // TypeBuilders cannot lookup members.
-                       TypeBuilder tb = t as TypeBuilder;
-                       if (tb != null) {
-#if NET_2_0
-                               if (!tb.IsCreated ())
-                                       tb.CreateType ();
-#else
-                               try {
-                                       // FIXME: in the future CreateType() got
-                                       // to throw exceptions, this line will
-                                       // become so slow. In such case, avoid
-                                       // exception by making use of some 
-                                       // methods that are known to not throw
-                                       // on "already created" TypeBuilders.
-                                       tb.CreateType ();
-                               } catch (Exception) {
-                               }
-#endif
-                       }
-*/
                        if (t != null && isArray)
                                t = Array.CreateInstance (t, 0).GetType ();
                        return t;

_______________________________________________
Mono-patches maillist  -  [email protected]
http://lists.ximian.com/mailman/listinfo/mono-patches

Reply via email to