remove exception debug code
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
using System;
|
||||
using System.Diagnostics;
|
||||
|
||||
namespace PocketSharp
|
||||
{
|
||||
@@ -37,7 +36,7 @@ namespace PocketSharp
|
||||
/// </summary>
|
||||
/// <param name="message">The message that describes the error.</param>
|
||||
public PocketException(string message)
|
||||
: base(message) { Debug.WriteLine(message); }
|
||||
: base(message) { }
|
||||
|
||||
|
||||
/// <summary>
|
||||
@@ -46,6 +45,6 @@ namespace PocketSharp
|
||||
/// <param name="message">The error message that explains the reason for the exception.</param>
|
||||
/// <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
|
||||
public PocketException(string message, Exception innerException)
|
||||
: base(message, innerException) { Debug.WriteLine(message); }
|
||||
: base(message, innerException) { }
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user