From b06169b457047c560426b95ae5621a4405c5875b Mon Sep 17 00:00:00 2001 From: Tzach Shabtay Date: Sun, 11 Dec 2016 18:03:29 -0500 Subject: [PATCH] Removed the stubs for System.Diagnostics.Debug from Android & IOS MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This looks like it was once a Xamarin limitation, but it’s not anymore. Note: tested this on Android, but not on IOS (tested compilation on IOS only). Fixes #447 --- src/OpenTK/Minimal.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/OpenTK/Minimal.cs b/src/OpenTK/Minimal.cs index 11b62b7..56ddd44 100644 --- a/src/OpenTK/Minimal.cs +++ b/src/OpenTK/Minimal.cs @@ -13,6 +13,8 @@ namespace OpenTK // minimal targets (e.g. MonoTouch). // Note: the "overriden" classes must not be fully qualified for this to work! + #if MINIMAL + // System.Diagnostics.Debug static class Debug { @@ -39,8 +41,6 @@ namespace OpenTK public static void Flush() { } } - #if MINIMAL - // System.Diagnostics.Stopwatch sealed class Stopwatch { -- 2.7.4