Merge "Change BluetoothCodecStatus.sameCapabilities() to public"

am: 27a6501a19

Change-Id: Ib061fe25ba0ec460b601c893f0a1396626e00331
This commit is contained in:
Ugo Yu
2019-03-08 07:01:55 -08:00
committed by android-build-merger

View File

@@ -74,8 +74,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);
}