Skip to content

Commit 2f1a4bc

Browse files
committed
don't use expression body for unity
1 parent fcaeeba commit 2f1a4bc

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/MessagePack/MessagePackBinary.cs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2347,7 +2347,10 @@ public static DateTime ReadDateTime(byte[] bytes, int offset, out int readSize)
23472347
/// Throws an exception indicating that there aren't enough bytes remaining in the buffer to store
23482348
/// the promised data.
23492349
/// </summary>
2350-
internal static void ThrowNotEnoughBytesException() => throw new EndOfStreamException();
2350+
internal static void ThrowNotEnoughBytesException()
2351+
{
2352+
throw new EndOfStreamException();
2353+
}
23512354
}
23522355

23532356
// Stream Overload

0 commit comments

Comments
 (0)