Skip to content

Commit f80f4e3

Browse files
committed
Fix formatting
1 parent 6c16165 commit f80f4e3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

projects/RabbitMQ.Client/client/RentedOutgoingMemory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ internal class RentedOutgoingMemory : IDisposable, IResettable
1616
private byte[]? _rentedArray;
1717
private TaskCompletionSource<bool>? _sendCompletionSource;
1818

19-
internal int Size => (int) Data.Length;
19+
internal int Size => (int)Data.Length;
2020

2121
public int RentedArraySize => _rentedArray?.Length ?? 0;
2222

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ public static RentedOutgoingMemory SerializeToFrames<TMethod, THeader>(ref TMeth
185185
where TMethod : struct, IOutgoingAmqpMethod
186186
where THeader : IAmqpHeader
187187
{
188-
int remainingBodyBytes = (int) body.Length;
188+
int remainingBodyBytes = (int)body.Length;
189189
int size = Method.FrameSize + Header.FrameSize +
190190
method.GetRequiredBufferSize() + header.GetRequiredBufferSize() +
191191
BodySegment.FrameSize * GetBodyFrameCount(maxBodyPayloadBytes, remainingBodyBytes);

0 commit comments

Comments
 (0)