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

Commit 57c543a0 authored by Zach Johnson's avatar Zach Johnson
Browse files

Remove unnecessary parens

Bug: 145171640
Test: compile
Change-Id: Ie88e49c392fb0df652dc2bbc4120246a6d797fa6
parent c467e7f5
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1933,7 +1933,7 @@ public class AdapterService extends Service {
            enforceBluetoothPermission(service);

            int val = service.getNumOfOffloadedScanFilterSupported();
            return (val >= MIN_OFFLOADED_FILTERS);
            return val >= MIN_OFFLOADED_FILTERS;
        }

        @Override
@@ -1946,7 +1946,7 @@ public class AdapterService extends Service {
            enforceBluetoothPermission(service);

            int val = service.getOffloadedScanResultStorage();
            return (val >= MIN_OFFLOADED_SCAN_STORAGE_BYTES);
            return val >= MIN_OFFLOADED_SCAN_STORAGE_BYTES;
        }

        @Override