Skip to content

Commit a0192ea

Browse files
committed
Code cleanup.
1 parent cc0ad2a commit a0192ea

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/MsgPack/ItemsUnpacker.Unpacking.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6487,7 +6487,7 @@ private static void ReadBytes( Stream source, byte[] buffer, int offset, int exp
64876487
{
64886488
var currentOffset = offset;
64896489
var reading = expectedSize;
6490-
while( true )
6490+
while ( true )
64916491
{
64926492
var read = source.Read( buffer, currentOffset, reading );
64936493
if ( read == reading )

src/MsgPack/Unpacking.ttinclude

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ private static void ReadBytes( Stream source, byte[] buffer, int offset, int exp
2323
{
2424
var currentOffset = offset;
2525
var reading = expectedSize;
26-
while( true )
26+
while ( true )
2727
{
2828
var read = source.Read( buffer, currentOffset, reading );
2929
if ( read == reading )

0 commit comments

Comments
 (0)