[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

@@ -238,7 +238,7 @@ bool ExpressionBinding::apply()
{
Property * prop(path.getProperty());
assert(prop != nullptr);
assert(prop);
Q_UNUSED(prop);
DocumentObject * docObj(path.getDocumentObject());