This commit is contained in:
Michael Becker 2015-05-12 16:11:46 -04:00
parent 928e3d83ee
commit a2670e4582

View File

@ -26,7 +26,7 @@ namespace UniversalEditor.IO
public class Reader : ReaderWriterBase
{
public Reader(Accessor input)
: base(input)
: base(input)
{
}
@ -55,7 +55,7 @@ namespace UniversalEditor.IO
{
int maxByteCount = base.Accessor.DefaultEncoding.GetMaxByteCount(1);
byte[] bytes = PeekBytes(maxByteCount);
charBuffer = base.Accessor.DefaultEncoding.GetString(bytes);
charBuffer = base.Accessor.DefaultEncoding.GetString(bytes);
charBufferIndex = 0;
}