1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-19 18:57:59 +03:00

mux: remove stale portion of comment from Pane::get_lines

we haven't had dirty bits in a long while
This commit is contained in:
Wez Furlong 2022-08-24 20:19:15 -07:00
parent 4963187eaf
commit f59e1d5fff

View File

@ -223,10 +223,6 @@ pub trait Pane: Downcast {
/// screen and the index would go off the bottom.
/// Because of this, we also return the adjusted StableRowIndex for
/// the first row in the range.
///
/// For each line, if it was dirty in the backing data, then the dirty
/// flag will be cleared in the backing data. The returned line will
/// have its dirty bit set appropriately.
fn get_lines(&self, lines: Range<StableRowIndex>) -> (StableRowIndex, Vec<Line>);
fn get_logical_lines(&self, lines: Range<StableRowIndex>) -> Vec<LogicalLine> {