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

Commit 75cf51c6 authored by Ömer Faruk Yılmaz's avatar Ömer Faruk Yılmaz
Browse files

Fix GattService stop() typo from previous change

See go/scan-manager-refactor for more details.

Bug: 313335632
Bug: 267361243
Bug: 327503826
Bug: 343116685
Flag: EXEMPT, mechanical refactor
Test: m com.android.btservices
Change-Id: I099d11652650d6b8cf8738312bc221e3d0e99c63
parent 0e3dbb84
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -237,7 +237,7 @@ public class GattService extends ProfileService {
    @Override
    public void stop() {
        Log.d(TAG, "stop()");
        if (Flags.scanManagerRefactor() && sGattService != null) {
        if (Flags.scanManagerRefactor() && sGattService == null) {
            Log.w(TAG, "stop() called before start()");
            return;
        }