diff options
| author | Ugo Yu <ugoyu@google.com> | 2019-03-09 05:49:31 -0800 |
|---|---|---|
| committer | android-build-merger <android-build-merger@google.com> | 2019-03-09 05:49:31 -0800 |
| commit | cf592009e336b930ec334d1e3006dbfc6210aacc (patch) | |
| tree | 909dca0ba4341b1c46a0a7ccf39305771cb7cdf3 /core/java/android/bluetooth/BluetoothCodecStatus.java | |
| parent | 38690413907e1536d059c4be24ac0e8a3765de0b (diff) | |
| parent | 99c86ecda547c277f0825938772f6a0eea2f7243 (diff) | |
Merge "Change BluetoothCodecStatus.sameCapabilities() to public" am: 27a6501a19 am: 8db54f6563
am: 99c86ecda5
Change-Id: Id4006e0be9eca624d52a313fc6e492483cc53dbb
Diffstat (limited to 'core/java/android/bluetooth/BluetoothCodecStatus.java')
| -rw-r--r-- | core/java/android/bluetooth/BluetoothCodecStatus.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/bluetooth/BluetoothCodecStatus.java b/core/java/android/bluetooth/BluetoothCodecStatus.java index 8eae2b4cf590..58b6aeae6398 100644 --- a/core/java/android/bluetooth/BluetoothCodecStatus.java +++ b/core/java/android/bluetooth/BluetoothCodecStatus.java @@ -75,8 +75,8 @@ public final class BluetoothCodecStatus implements Parcelable { * @param c2 the second array of capabilities to compare * @return true if both arrays contain same capabilities */ - private static boolean sameCapabilities(BluetoothCodecConfig[] c1, - BluetoothCodecConfig[] c2) { + public static boolean sameCapabilities(BluetoothCodecConfig[] c1, + BluetoothCodecConfig[] c2) { if (c1 == null) { return (c2 == null); } |
