summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorAndrew Arnott <andrewarnott@gmail.com>2009-02-05 08:08:13 -0800
committerAndrew Arnott <andrewarnott@gmail.com>2009-02-05 08:08:13 -0800
commit52f43630441033704beea8bcc00b153b58617ad3 (patch)
tree9d3c6129f10a6cfe3945920ed9db69aac01db0f5 /src
parentf63e1944066d0b74fa28c287b58d47030df1ea94 (diff)
downloadDotNetOpenAuth-52f43630441033704beea8bcc00b153b58617ad3.zip
DotNetOpenAuth-52f43630441033704beea8bcc00b153b58617ad3.tar.gz
DotNetOpenAuth-52f43630441033704beea8bcc00b153b58617ad3.tar.bz2
Fixed bug in Channel.Dispose.
Diffstat (limited to 'src')
-rw-r--r--src/DotNetOpenAuth/Messaging/Channel.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth/Messaging/Channel.cs b/src/DotNetOpenAuth/Messaging/Channel.cs
index 8e55112..ead3541 100644
--- a/src/DotNetOpenAuth/Messaging/Channel.cs
+++ b/src/DotNetOpenAuth/Messaging/Channel.cs
@@ -363,7 +363,7 @@ namespace DotNetOpenAuth.Messaging {
/// </summary>
public void Dispose() {
this.Dispose(true);
- GC.SuppressFinalize(true);
+ GC.SuppressFinalize(this);
}
#endregion