diff options
| author | Steven Shaw <steshaw@apache.org> | 2006-11-28 21:43:07 +0000 |
|---|---|---|
| committer | Steven Shaw <steshaw@apache.org> | 2006-11-28 21:43:07 +0000 |
| commit | d83a0e745a70209785c12a8da1291cdcf6d0c1cd (patch) | |
| tree | 25d70e49c4c59cf13b0072dcb302708f87046258 /qpid/dotnet/Qpid.Client/Client/Protocol/AMQProtocolSession.cs | |
| parent | 38a31e9f8c8f09ca8d69c244386d63d98f77ae12 (diff) | |
| download | qpid-python-d83a0e745a70209785c12a8da1291cdcf6d0c1cd.tar.gz | |
Fix compiler warnings.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@480221 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/dotnet/Qpid.Client/Client/Protocol/AMQProtocolSession.cs')
| -rw-r--r-- | qpid/dotnet/Qpid.Client/Client/Protocol/AMQProtocolSession.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/dotnet/Qpid.Client/Client/Protocol/AMQProtocolSession.cs b/qpid/dotnet/Qpid.Client/Client/Protocol/AMQProtocolSession.cs index 65aca0d942..15696f38c5 100644 --- a/qpid/dotnet/Qpid.Client/Client/Protocol/AMQProtocolSession.cs +++ b/qpid/dotnet/Qpid.Client/Client/Protocol/AMQProtocolSession.cs @@ -232,7 +232,7 @@ namespace Qpid.Client.Protocol { _closingChannels.Remove(channelId); AmqChannel channel = (AmqChannel) _channelId2SessionMap[channelId]; - channel.Closed(new AMQException(_logger, code, text)); + channel.ClosedWithException(new AMQException(_logger, code, text)); return true; } else |
