Skip to content

Commit 14845da

Browse files
committed
Rename
1 parent b71f65d commit 14845da

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

projects/RabbitMQ.Client/client/impl/RecordedExchange.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,21 +39,21 @@ namespace RabbitMQ.Client.Impl
3939
private readonly string _name;
4040
private readonly string _type;
4141
private readonly bool _durable;
42-
private readonly bool _isAutoDelete;
42+
private readonly bool _autoDelete;
4343
private readonly IDictionary<string, object>? _arguments;
4444

4545
public string Name => _name;
46-
public bool AutoDelete => _isAutoDelete;
46+
public bool AutoDelete => _autoDelete;
4747
public string Type => _type;
4848
public bool Durable => _durable;
4949
public IDictionary<string, object>? Arguments => _arguments;
5050

51-
public RecordedExchange(string name, string type, bool durable, bool isAutoDelete, IDictionary<string, object>? arguments)
51+
public RecordedExchange(string name, string type, bool durable, bool autoDelete, IDictionary<string, object>? arguments)
5252
{
5353
_name = name;
5454
_type = type;
5555
_durable = durable;
56-
_isAutoDelete = isAutoDelete;
56+
_autoDelete = autoDelete;
5757
_arguments = arguments;
5858
}
5959

projects/RabbitMQ.Client/client/impl/RecordedQueue.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,11 @@ namespace RabbitMQ.Client.Impl
4040
private readonly IDictionary<string, object>? _arguments;
4141
private readonly bool _durable;
4242
private readonly bool _exclusive;
43-
private readonly bool _isAutoDelete;
43+
private readonly bool _autoDelete;
4444
private readonly bool _isServerNamed;
4545

4646
public string Name => _name;
47-
public bool AutoDelete => _isAutoDelete;
47+
public bool AutoDelete => _autoDelete;
4848
public bool IsServerNamed => _isServerNamed;
4949
public bool Durable => _durable;
5050
public bool Exclusive => _exclusive;
@@ -56,7 +56,7 @@ public RecordedQueue(string name, bool isServerNamed, bool durable, bool exclusi
5656
_isServerNamed = isServerNamed;
5757
_durable = durable;
5858
_exclusive = exclusive;
59-
_isAutoDelete = autoDelete;
59+
_autoDelete = autoDelete;
6060
_arguments = arguments;
6161
}
6262

@@ -66,7 +66,7 @@ public RecordedQueue(string newName, in RecordedQueue old)
6666
_isServerNamed = old._isServerNamed;
6767
_durable = old._durable;
6868
_exclusive = old._exclusive;
69-
_isAutoDelete = old._isAutoDelete;
69+
_autoDelete = old._autoDelete;
7070
_arguments = old._arguments;
7171
}
7272

0 commit comments

Comments
 (0)