From 50c15ad6cef5957b60db2432d26aac96981e6db5 Mon Sep 17 00:00:00 2001 From: Tobias Klika Date: Fri, 27 Dec 2013 21:34:53 +0100 Subject: [PATCH] remove exception debug code --- PocketSharp/Utilities/PocketException.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/PocketSharp/Utilities/PocketException.cs b/PocketSharp/Utilities/PocketException.cs index 24422a3..c87bf0d 100644 --- a/PocketSharp/Utilities/PocketException.cs +++ b/PocketSharp/Utilities/PocketException.cs @@ -1,5 +1,4 @@ using System; -using System.Diagnostics; namespace PocketSharp { @@ -37,7 +36,7 @@ namespace PocketSharp /// /// The message that describes the error. public PocketException(string message) - : base(message) { Debug.WriteLine(message); } + : base(message) { } /// @@ -46,6 +45,6 @@ namespace PocketSharp /// The error message that explains the reason for the exception. /// The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified. public PocketException(string message, Exception innerException) - : base(message, innerException) { Debug.WriteLine(message); } + : base(message, innerException) { } } }