removed unused line

the end of the range should be the end of the line as we don't want to
see [//#endreigon] in our fold widget.
This commit is contained in:
sevin7676 2014-11-24 10:18:00 -05:00
commit 602a7efd5f

View file

@ -175,7 +175,6 @@ oop.inherits(FoldMode, BaseFoldMode);
var endRow = row;
if (endRow > startRow) {
var endColumn = line.search(/\S/);
return new Range(startRow, startColumn, endRow, line.length);
}
};