Skip to content

Commit 8d10ee2

Browse files
Correct formatting
1 parent 7f47487 commit 8d10ee2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

projects/client/RabbitMQ.Client/src/client/impl/RecordedBinding.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,14 @@ public RecordedBinding(AutorecoveringModel model) : base(model)
5454
public string RoutingKey { get; protected set; }
5555
public string Source { get; protected set; }
5656

57-
public bool Equals(RecordedBinding other)
58-
{
57+
public bool Equals(RecordedBinding other)
58+
{
5959
return other != null &&
60-
(Source.Equals(other.Source)) &&
61-
(Destination.Equals(other.Destination)) &&
62-
(RoutingKey.Equals(other.RoutingKey)) &&
63-
(Arguments == other.Arguments);
64-
}
60+
(Source.Equals(other.Source)) &&
61+
(Destination.Equals(other.Destination)) &&
62+
(RoutingKey.Equals(other.RoutingKey)) &&
63+
(Arguments == other.Arguments);
64+
}
6565

6666
public override bool Equals(object obj)
6767
{

0 commit comments

Comments
 (0)