a bit more cleanup

This commit is contained in:
Jan Tattermusch 2020-06-03 16:12:16 +02:00
parent ba61d76e52
commit 94e64f2c0b
2 changed files with 2 additions and 21 deletions

View File

@ -548,20 +548,6 @@ namespace Google.Protobuf
#endregion
//private void RefreshBuffer()
//{
// if (output == null)
// {
// // We're writing to a single buffer.
// throw new OutOfSpaceException();
// }
// // Since we have an output stream, this is our buffer
// // and buffer offset == 0
// output.Write(buffer, 0, position);
// position = 0;
//}
/// <summary>
/// Indicates that a CodedOutputStream wrapping a flat byte array
/// ran out of space.
@ -605,11 +591,6 @@ namespace Google.Protobuf
{
var span = new Span<byte>(buffer);
WriteBufferHelper.Flush(ref span, ref state);
/*if (output != null)
{
RefreshBuffer();
}*/
}
/// <summary>

View File

@ -50,8 +50,8 @@ namespace Google.Protobuf
// NOTE: the Span representing the current buffer is kept separate so that this doesn't have to be a ref struct and so it can
// be included in CodedOutputStream's internal state
internal int limit; // TODO: it's readonly in CodedOutputStream
internal int position;
internal int limit; // the size of the current buffer
internal int position; // position in the current buffer
internal WriteBufferHelper writeBufferHelper;