diff --git a/src/Document.php b/src/Document.php index 8958374..c17f6d4 100644 --- a/src/Document.php +++ b/src/Document.php @@ -70,11 +70,11 @@ class Document { { // Remove line endings when reading the file $this->rows[] = Row::new($this, rtrim($line), $this->numRows); - // $this->insertRow($this->numRows, rtrim($line), FALSE); } fclose($handle); + $this->dirty = false; $this->selectSyntaxHighlight(); return $this;