[runtime] Fix Empty generic enumerator equality
[mono.git] / mcs / class / corlib / corert / Debug.cs
index 6a88936752923e87171375cabcde77b2ab193aad..31959c173984ea0d2d5a32ab360e8b6bfccd340b 100644 (file)
@@ -1,13 +1,15 @@
 namespace System.Diagnostics.Private
 {
-       static class Debug
+       static partial class Debug
        {
-               public static void Assert (bool condition)
+               static void ShowAssertDialog (string stackTrace, string message, string detailMessage)
                {
+                       // FIXME should we g_error in this case?
                }
 
-               public static void Assert (bool condition, string message)
+               static void WriteCore (string message)
                {
+                       // FIXME should we g_debug in this case?
                }
        }
 }