diff --git a/src/MessagePack/MessagePackBinary.cs b/src/MessagePack/MessagePackBinary.cs index 5e5813be3..813842716 100644 --- a/src/MessagePack/MessagePackBinary.cs +++ b/src/MessagePack/MessagePackBinary.cs @@ -2347,7 +2347,10 @@ public static DateTime ReadDateTime(byte[] bytes, int offset, out int readSize) /// Throws an exception indicating that there aren't enough bytes remaining in the buffer to store /// the promised data. /// - internal static void ThrowNotEnoughBytesException() => throw new EndOfStreamException(); + internal static void ThrowNotEnoughBytesException() + { + throw new EndOfStreamException(); + } } // Stream Overload