Skip to content

Commit

Permalink
Drop accidental debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
filmor committed Feb 1, 2021
1 parent ad4f456 commit cbb2e16
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions netfx_loader/ClrLoader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,10 +84,14 @@ public static void CloseAppDomain(IntPtr domain)
}
}

#if DEBUG
static void Print(string s)
{
Console.WriteLine(s);
}
#else
static void Print(string s) {}
#endif
}

}

0 comments on commit cbb2e16

Please sign in to comment.