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

This should be slightly faster

Merge would honour changes, and removals
are equivalent to changing to default value.
This commit is contained in:
Aidan Woods
2019-01-25 20:23:04 +00:00
parent 57632f38fb
commit 9f9ef78662

View File

@@ -112,9 +112,7 @@ final class Parsedown
if (isset($Block)) {
if ($Block instanceof StateUpdatingBlock) {
$this->State = $this->State->mergingWith(
$Block->latestState()
);
$this->State = $Block->latestState();
}
if (isset($CurrentBlock) && ! $Block->acquiredPrevious()) {