make linter happy

This commit is contained in:
Jörg Breitbart
2018-09-13 19:03:57 +02:00
parent bd68853575
commit a8d9c92ae1
+1 -1
View File
@@ -420,7 +420,7 @@ export class BufferStringIterator implements IBufferStringIterator {
const range = this._buffer.getWrappedRangeForLine(this._current);
let result = '';
for (let i = range.first; i <= range.last; ++i) {
// TODO: always apply trimRight after fixing #1685
// TODO: always apply trimRight after fixing #1685
result += this._buffer.translateBufferLineToString(i, (this._trimRight) ? i === range.last : false);
}
this._current = range.last;