App: PR6497 move return statement to new line

This commit is contained in:
Chris Hennes
2022-03-29 12:33:37 -05:00
parent 8c35e7776c
commit f7edc74eee
14 changed files with 76 additions and 38 deletions

View File

@@ -1374,7 +1374,8 @@ PropertyString::~PropertyString()
void PropertyString::setValue(const char* newLabel)
{
if(!newLabel) return;
if(!newLabel)
return;
if(_cValue == newLabel)
return;