Skip to content

Commit fffffc6

Browse files
author
Martin Eden
committed
bug20456: Correctec two field names from "this.m_" to "m_"
1 parent a9d52e8 commit fffffc6

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/client/events/BasicDeliverEventArgs.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,13 +83,13 @@ public BasicDeliverEventArgs(string consumerTag,
8383
IBasicProperties properties,
8484
byte[] body)
8585
{
86-
this.m_consumerTag = consumerTag;
87-
this.m_deliveryTag = deliveryTag;
88-
this.m_redelivered = redelivered;
89-
this.m_exchange = exchange;
90-
this.m_routingKey = routingKey;
91-
this.m_basicProperties = properties;
92-
this.m_body = body;
86+
m_consumerTag = consumerTag;
87+
m_deliveryTag = deliveryTag;
88+
m_redelivered = redelivered;
89+
m_exchange = exchange;
90+
m_routingKey = routingKey;
91+
m_basicProperties = properties;
92+
m_body = body;
9393
}
9494

9595
///<summary>The consumer tag of the consumer that the message

src/client/impl/UnknownClassOrMethodException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ public UnknownClassOrMethodException(ushort classId, ushort methodId)
8989

9090
public override string ToString()
9191
{
92-
if (this.m_methodId == 0)
92+
if (m_methodId == 0)
9393
{
9494
return base.ToString() + "<" + m_classId + ">";
9595
}

0 commit comments

Comments
 (0)