[Gui] remove some more superfluous nullptr checks

This commit is contained in:
Uwe
2022-07-18 13:15:38 +02:00
parent 2d60c3a682
commit 3e99d39d05
12 changed files with 25 additions and 25 deletions

View File

@@ -51,7 +51,7 @@ DlgExpressionInput::DlgExpressionInput(const App::ObjectIdentifier & _path,
, impliedUnit(_impliedUnit)
, minimumWidth(10)
{
assert(path.getDocumentObject() != nullptr);
assert(path.getDocumentObject());
// Setup UI
ui->setupUi(this);