From 553b59abb8b4fd9c6e7db3410a3070027ecb40d4 Mon Sep 17 00:00:00 2001 From: Harry Date: Thu, 1 Mar 2018 17:02:25 +0100 Subject: [PATCH] Revert "Fix a null reference exception" --- Source/Libs/GLibSharp/Timeout.cs | 3 --- build.cake | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/Source/Libs/GLibSharp/Timeout.cs b/Source/Libs/GLibSharp/Timeout.cs index b2f2e03e4..5d7992a00 100644 --- a/Source/Libs/GLibSharp/Timeout.cs +++ b/Source/Libs/GLibSharp/Timeout.cs @@ -45,9 +45,6 @@ namespace GLib { public bool Handler () { try { - if (real_handler == null) - return false; - TimeoutHandler timeout_handler = (TimeoutHandler) real_handler; bool cont = timeout_handler (); diff --git a/build.cake b/build.cake index 9f0d82ace..be72b1080 100644 --- a/build.cake +++ b/build.cake @@ -6,7 +6,7 @@ // VARS Settings.Cake = Context; -Settings.Version = "0.0.0.7"; +Settings.Version = "3.22.24.30"; Settings.BuildTarget = Argument("BuildTarget", "Default"); Settings.Assembly = Argument("Assembly", "");