Replace …
if (foo) { return true; } else { return false; }
… with the equivalent …
return foo;
The code was introduced in fbf385cc830df2aec7cdcbab0c2b09b46569e8c1 which was merged into master earlier today.
Friendly ping @jonasschnelli :-)
Replace …
if (foo) { return true; } else { return false; }
… with the equivalent …
return foo;
The code was introduced in fbf385cc830df2aec7cdcbab0c2b09b46569e8c1 which was merged into master earlier today.
Friendly ping @jonasschnelli :-)
Can you please add somewhat more description to your commit message and PR? Please don't just drop PRs without any description or motivation.
Replace …
```
if (foo) { return true; } else { return false; }
```
… with the equivalent …
```
return foo;
```@laanwj Fixed :-)
ACK e49b868cfe9391ec61b4fedef9811a4be265525d
utACK e49b868
utACK e49b868