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 8f4dd64 commit b3f0bc7Copy full SHA for b3f0bc7
projects/RabbitMQ.Client/client/impl/EmptyBasicProperty.cs
@@ -6,9 +6,9 @@
6
namespace RabbitMQ.Client.client.impl
7
{
8
#nullable enable
9
- internal readonly struct EmptyBasicProperty : IReadOnlyBasicProperties, IAmqpHeader
+ internal sealed class EmptyBasicProperty : IReadOnlyBasicProperties, IAmqpHeader
10
11
- internal static readonly EmptyBasicProperty Empty;
+ internal static EmptyBasicProperty Empty => new EmptyBasicProperty();
12
13
ushort IAmqpHeader.ProtocolClassId => ClassConstants.Basic;
14
0 commit comments