Oops, hit enter too early --
This changes
if (!foo) {
doBar();
} else {
doFoo();
}
to
if (foo) {
doFoo();
} else {
doBar();
}
(among other changes) for readability.
I imagine there could be a problem here but this isn't the change that did it.
On Wed, Jul 11, 2012 at 9:33 AM, Sean Owen <[email protected]> wrote:
> I made the change on the line in question, but it can't be the problem
> since it did not change the functionality. To see that you have to
> look at the rest of the change. It is changing...
>
> if (! ) {
> A;
> } else {
> B
> }
>
> to
>
> if (foo) {
> B
>