[Robot etc.] remove superfluous nullptr checks

This commit is contained in:
Uwe
2022-07-18 02:54:09 +02:00
parent c619e7bbda
commit 7b4e014263
5 changed files with 9 additions and 9 deletions

View File

@@ -656,7 +656,7 @@ void PointsGrid::Validate (const PointKernel &rclPoints)
void PointsGrid::Validate ()
{
if (_pclPoints == nullptr)
if (!_pclPoints)
return;
if (_pclPoints->size() != _ulCtElements)