if (condition)
{
return a;
}
return b;
over:
if (condition)
{
return a;
} else {
return b;
}
Only real benefit is to get rid of compiler warnings. I'm ambivalent
about either way being "more correct", but the fewer warnings I get the
better IMHO, so I remove nesting of returns in else
Thanks Kev,
Committed the vs part.
I do not really see the benefit of having
if (condition)
{
return a;
}
return b;
over:
if (condition)
{
return a;
} else {
return b;
}
so I didn't apply those patches.
I did apply the destDir -> baseDir one, but it left the javadoc in an
inconsistent s