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

Commit 3097cbff authored by Tomasz Wasilczyk's avatar Tomasz Wasilczyk
Browse files

Rename getConfigFlag to isConfigFlagSet.

The latter matches code guidelines better.

Bug: 69958423
Test: it builds
Change-Id: I2047462ed90107328503cd15903a09af74791c04
parent 7512abf1
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -212,7 +212,7 @@ class TunerSession extends ITuner.Stub {
            MutableInt halResult = new MutableInt(Result.UNKNOWN_ERROR);
            MutableBoolean flagState = new MutableBoolean(false);
            try {
                mHwSession.getConfigFlag(flag, (int result, boolean value) -> {
                mHwSession.isConfigFlagSet(flag, (int result, boolean value) -> {
                    halResult.value = result;
                    flagState.value = value;
                });