1
0
mirror of https://github.com/erusev/parsedown.git synced 2023-08-10 21:13:06 +03:00

This isn't used and is derivable from the indent

This commit is contained in:
Aidan Woods 2019-01-21 18:18:54 +00:00
parent 6add0ea877
commit 366600034c
No known key found for this signature in database
GPG Key ID: 9A6A8EFAA512BBB9

View File

@ -9,9 +9,6 @@ final class Line
/** @var int */
private $indent;
/** @var string */
private $indentString;
/** @var int */
private $indentOffset;
@ -34,7 +31,6 @@ final class Line
$this->indent = \strspn($lineWithoutTabs, ' ');
$this->text = \substr($lineWithoutTabs, $this->indent);
$this->indentString = \substr($lineWithoutTabs, 0, $this->indent);
}
/** @return int */