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

Commit 3a61c47e authored by Patty's avatar Patty
Browse files

Correct the intDef that getFrameDuration() and getOctetsPerFrame()

are annotated to return

Tag: #refactor
Bug: 217274997
Test: atest BluetoothInstrumentationTests
Change-Id: Ib3909156d0f1a88c87ff9a31ce25dd9823b35876
parent 7b7c9282
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -336,14 +336,14 @@ public final class BluetoothLeAudioCodecConfig implements Parcelable {
    /**
     * Returns the frame duration.
     */
    public @ChannelMode int getFrameDuration() {
    public @FrameDuration int getFrameDuration() {
        return mFrameDuration;
    }

    /**
     * Returns the octets per frame
     */
    public @ChannelMode int getOctetsPerFrame() {
    public int getOctetsPerFrame() {
        return mOctetsPerFrame;
    }