1
0
mirror of https://github.com/erusev/parsedown.git synced 2025-09-02 19:32:35 +02:00

No need to unset if not set

This commit is contained in:
Aidan Woods
2018-04-08 17:38:09 +01:00
parent 6f13f97674
commit f2327023c1

View File

@@ -1597,9 +1597,9 @@ class Parsedown
{
$Element = $this->handle($Element);
}
}
unset($Element['handler']);
unset($Element['handler']);
}
return $Element;
}