@@ -305,7 +305,7 @@ public override void Read(T[] values, int index, int count)
305305 }
306306 }
307307
308- private sealed class DvTextCodec : SimpleCodec < ReadOnlyMemory < char > >
308+ private sealed class TextCodec : SimpleCodec < ReadOnlyMemory < char > >
309309 {
310310 private const int LengthMask = unchecked ( ( int ) 0x7FFFFFFF ) ;
311311
@@ -319,7 +319,7 @@ public override string LoadName
319319 // int[entries]: The non-decreasing end-boundary character index array, with high bit set for "missing" values.
320320 // string: The UTF-8 encoded string, with the standard LEB128 byte-length preceeding it.
321321
322- public DvTextCodec ( CodecFactory factory )
322+ public TextCodec ( CodecFactory factory )
323323 : base ( factory , TextType . Instance )
324324 {
325325 }
@@ -339,7 +339,7 @@ private sealed class Writer : ValueWriterBase<ReadOnlyMemory<char>>
339339 private StringBuilder _builder ;
340340 private List < int > _boundaries ;
341341
342- public Writer ( DvTextCodec codec , Stream stream )
342+ public Writer ( TextCodec codec , Stream stream )
343343 : base ( codec . Factory , stream )
344344 {
345345 _builder = new StringBuilder ( ) ;
@@ -379,7 +379,7 @@ private sealed class Reader : ValueReaderBase<ReadOnlyMemory<char>>
379379 private int _index ;
380380 private string _text ;
381381
382- public Reader ( DvTextCodec codec , Stream stream , int items )
382+ public Reader ( TextCodec codec , Stream stream , int items )
383383 : base ( codec . Factory , stream )
384384 {
385385 _entries = Reader . ReadInt32 ( ) ;
@@ -753,7 +753,6 @@ public Reader(DateTimeOffsetCodec codec, Stream stream, int items)
753753 Utils . EnsureSize ( ref _ticks , _entries , false ) ;
754754 for ( int i = 0 ; i < _entries ; i ++ )
755755 _ticks [ i ] = Reader . ReadInt64 ( ) ;
756-
757756 }
758757
759758 public override void MoveNext ( )
0 commit comments