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

Commit 6392adde authored by Patty's avatar Patty
Browse files

Rename function codecConfigOffloading() to getCodecConfigOffloading()

Tag: #refactor
Bug: 203535499
Bug: 150670922
Test: atest BluetoothInstrumentationTests
Change-Id: I2dd22d85fb708293454bfd643c5d437c9c73f1eb
parent 500b5985
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -55,7 +55,7 @@ class LeAudioCodecConfig {
        }
    }

    BluetoothLeAudioCodecConfig[] codecConfigOffloading() {
    BluetoothLeAudioCodecConfig[] getCodecConfigOffloading() {
        return mCodecConfigOffloading;
    }
}
+1 −1
Original line number Diff line number Diff line
@@ -219,7 +219,7 @@ public class LeAudioService extends ProfileService {
        // Setup codec config
        mLeAudioCodecConfig = new LeAudioCodecConfig(this);

        mLeAudioNativeInterface.init(mLeAudioCodecConfig.codecConfigOffloading());
        mLeAudioNativeInterface.init(mLeAudioCodecConfig.getCodecConfigOffloading());

        return true;
    }