Remove duplicate method

This commit is contained in:
Timothy Warren 2019-10-22 14:25:46 -04:00
parent deaed33b90
commit 1522544fc9
1 changed files with 0 additions and 11 deletions

View File

@ -348,17 +348,6 @@ class Editor {
}
}
protected function rowInsertChar(Row $row, int $at, string $c)
{
if ($at < 0 || $at > $row->size)
{
$at = $row->size;
}
$row->chars[$at] = $c;
$this->updateRow($row);
}
// ------------------------------------------------------------------------
// ! File I/O
// ------------------------------------------------------------------------