[Gui] remove some more superfluous nullptr checks

This commit is contained in:
Uwe
2022-07-18 13:15:38 +02:00
parent af945a8900
commit c40e476a5b
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);