Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Skip to content
Commit b6d8b917 authored by William Escande's avatar William Escande
Browse files

VolumeControl: Early return in registerCallback

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

To win some indent spaces

Bug: 324492914
Test: m Bluetooth | Existing test
Flag: Exempt, mechanical no-op
Change-Id: Ia580c60c2e35b446ecdfb373afed10206e4376b7
parent aeaae719
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment