diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2009-02-05 08:08:13 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2009-02-05 08:08:13 -0800 |
commit | 52f43630441033704beea8bcc00b153b58617ad3 (patch) | |
tree | 9d3c6129f10a6cfe3945920ed9db69aac01db0f5 /src | |
parent | f63e1944066d0b74fa28c287b58d47030df1ea94 (diff) | |
download | DotNetOpenAuth-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.cs | 2 |
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 |