Skip to content

Commit 66acbd5

Browse files
committed
Address compiler warning
1 parent 75e87e4 commit 66acbd5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ internal struct AsyncEventingWrapper<TEvent> where TEvent : AsyncEventArgs
1212
private string? _context;
1313
private Func<Exception, string, CancellationToken, Task>? _onException;
1414

15-
public readonly bool IsEmpty => _event is null;
15+
public bool IsEmpty => _event is null;
1616

1717
public AsyncEventingWrapper(string context, Func<Exception, string, CancellationToken, Task> onException)
1818
{

0 commit comments

Comments
 (0)