Remove extraneous call to GetMemory (#7379)

This commit is contained in:
Ben Adams 2019-02-08 16:06:17 +00:00 committed by Chris Ross
parent efb5923120
commit b2f850aa82
1 changed files with 1 additions and 2 deletions

View File

@ -71,8 +71,7 @@ namespace PlatformBenchmarks
Commit();
}
_output.GetMemory(count);
_span = _output.GetSpan();
_span = _output.GetSpan(count);
}
private void WriteMultiBuffer(ReadOnlySpan<byte> source)