Remove incorrect nullness check

pull/491/head
Jonathan G Rennison 1 year ago
parent 8d1563a1ed
commit cff6f9ba00

@ -192,7 +192,7 @@ struct Plan : PlanPool::PoolItem<&_plan_pool> {
PlanLine *NewLine()
{
PlanLine *pl = new PlanLine();
if (pl) this->lines.push_back(pl);
this->lines.push_back(pl);
return pl;
}

Loading…
Cancel
Save