diff options
author | Patty <plhuang@google.com> | 2022-02-08 12:16:46 +0800 |
---|---|---|
committer | Patty <plhuang@google.com> | 2022-02-08 12:16:46 +0800 |
commit | 3a61c47e46cbc094e3ebc492ecb707fcbc7e177d (patch) | |
tree | 2415f76712afcf19ac464807e249a5114665b34a /framework/java/android/bluetooth/BluetoothLeAudioCodecConfig.java | |
parent | 7b7c92827f3d79eda65c13570aac6323f1254f73 (diff) |
Correct the intDef that getFrameDuration() and getOctetsPerFrame()
are annotated to return
Tag: #refactor
Bug: 217274997
Test: atest BluetoothInstrumentationTests
Change-Id: Ib3909156d0f1a88c87ff9a31ce25dd9823b35876
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothLeAudioCodecConfig.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothLeAudioCodecConfig.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/java/android/bluetooth/BluetoothLeAudioCodecConfig.java b/framework/java/android/bluetooth/BluetoothLeAudioCodecConfig.java index e3f691a66a..8377c2c7d2 100644 --- a/framework/java/android/bluetooth/BluetoothLeAudioCodecConfig.java +++ b/framework/java/android/bluetooth/BluetoothLeAudioCodecConfig.java @@ -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; } |