We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56e716e commit 09bf7acCopy full SHA for 09bf7ac
projects/RabbitMQ.Client/client/impl/BasicProperties.cs
@@ -115,10 +115,8 @@ public bool Persistent
115
/// </summary>
116
public PublicationAddress ReplyToAddress
117
{
118
- get
119
- {
120
- PublicationAddress result;
121
- PublicationAddress.TryParse(ReplyTo, out result);
+ get {
+ PublicationAddress.TryParse(ReplyTo, out var result);
122
return result;
123
}
124
set { ReplyTo = value.ToString(); }
projects/Unit/TestBasicProperties.cs
@@ -52,7 +52,6 @@ public void TestPersistentPropertyChangesDeliveryMode_PersistentTrueDelivery2()
52
// Arrange
53
var subject = new Framing.BasicProperties
54
55
-
56
// Act
57
Persistent = true
58
};
0 commit comments