Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / class / corlib / corert / Debug.cs
1 namespace System.Diagnostics.Private
2 {
3         static partial class Debug
4         {
5                 static void ShowAssertDialog (string stackTrace, string message, string detailMessage)
6                 {
7                         // FIXME should we g_error in this case?
8                 }
9
10                 static void WriteCore (string message)
11                 {
12                         // FIXME should we g_debug in this case?
13                 }
14         }
15 }