Skip to content
Snippets Groups Projects
Commit 6e8cf684 authored by Mark OLESEN's avatar Mark OLESEN
Browse files

STYLE: reduce else/if levels for return

parent a9f5f181
Branches
Tags
No related merge requests found
......@@ -1561,20 +1561,10 @@ bool Foam::meshRefinement::isGap
{
return true;
}
else
{
return false;
}
}
else
{
return false;
}
}
else
{
return false;
}
return false;
}
......@@ -1619,20 +1609,10 @@ bool Foam::meshRefinement::isNormalGap
{
return true;
}
else
{
return false;
}
}
else
{
return false;
}
}
else
{
return false;
}
return false;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment