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 | 6fd9d8e338a921d132c81e136dfcab8c9cb0698b (patch) | |
tree | e1120e5dffc9c70eef8b7af736d12de2220e4b65 /framework/java/android/bluetooth/BluetoothCodecStatus.java | |
parent | 03417b0ad469e4cffe934ddc1775597c8baa3322 (diff) | |
parent | 56f02797e28b096a8c69927018f43dc63d9a0d15 (diff) |
Merge "Change BluetoothCodecStatus.sameCapabilities() to public" am: e622f7d0f0 am: 4aa43800b1
am: 56f02797e2
Change-Id: Id4006e0be9eca624d52a313fc6e492483cc53dbb
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothCodecStatus.java')
-rw-r--r-- | framework/java/android/bluetooth/BluetoothCodecStatus.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/java/android/bluetooth/BluetoothCodecStatus.java b/framework/java/android/bluetooth/BluetoothCodecStatus.java index 8eae2b4cf5..58b6aeae63 100644 --- a/framework/java/android/bluetooth/BluetoothCodecStatus.java +++ b/framework/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); } |