Merge "Change BluetoothCodecStatus.sameCapabilities() to public"

This commit is contained in:
Treehugger Robot
2019-03-08 10:38:47 +00:00
committed by Gerrit Code Review

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);
}