From 1522544fc96422ac52eda231ae7ad21396aa08ca Mon Sep 17 00:00:00 2001 From: Timothy J Warren Date: Tue, 22 Oct 2019 14:25:46 -0400 Subject: [PATCH] Remove duplicate method --- src/Editor.php | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/Editor.php b/src/Editor.php index a53445c..a21c093 100644 --- a/src/Editor.php +++ b/src/Editor.php @@ -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 // ------------------------------------------------------------------------