Skip to content
Snippets Groups Projects
Commit 1d5d4bae authored by William Escande's avatar William Escande
Browse files

VolumeControl: Early return in unregisterCallback

replaced:
```
if (foo) {
  /*
  * long code
  */
}
```
by
```
if (!bar) {
  return;
}
/*
* long code
*/
```

To win some indent spaces

Bug: 324492914
Test: m Bluetooth | Existing test
Flag: Exempt, mechanical no-op
Change-Id: Ib735d03f1ea14547aae9213b6f7abc3362ff1338
parent b6d8b917
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment