Don't append inner exception to exception message
Don't:
```
new RuntimeException("Foo failed, reason: " + cause, cause);
```
Do:
```
new RuntimeException("Foo failed", cause);
```
Saves work.
Generates fewer instructions.
Flag: EXEMPT refactor
Change-Id: I1d7b396f0eb3509d384bd448f024df9cde41b139
Loading
Please register or sign in to comment