Style/spaces.

This commit is contained in:
Ferdinand Majerech 2014-07-30 04:46:53 +02:00
parent cf3bff517c
commit f4c57b368b

View file

@ -145,9 +145,9 @@ final class Reader
{
if(characterCount_ <= charIndex_ + index)
{
// XXX This is risky; revert this and the 'risky' change in UTF decoder
// if any bugs are introduced. We rely on the assumption that Reader
// only uses peek() to detect the of buffer. The test suite passes.
// XXX This is risky; revert this if bugs are introduced. We rely on
// the assumption that Reader only uses peek() to detect end of buffer.
// The test suite passes.
// throw new ReaderException("Trying to read past the end of the buffer");
return '\0';
}