summaryrefslogtreecommitdiff
path: root/framework/java/android/bluetooth/BluetoothCodecStatus.java
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2019-03-08 10:38:47 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2019-03-08 10:38:47 +0000
commite622f7d0f06a13a4cbfea7c798cbde9de670c0ae (patch)
tree42ed4ce81e59ee4b17726f30257be29b1bdaa210 /framework/java/android/bluetooth/BluetoothCodecStatus.java
parentc85bd85a57fd22f12ee2f311c4965f77ded76e80 (diff)
parent5075a69b222e323a8eb91fa1eb20a9f33068d3ff (diff)
Merge "Change BluetoothCodecStatus.sameCapabilities() to public"
Diffstat (limited to 'framework/java/android/bluetooth/BluetoothCodecStatus.java')
-rw-r--r--framework/java/android/bluetooth/BluetoothCodecStatus.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/framework/java/android/bluetooth/BluetoothCodecStatus.java b/framework/java/android/bluetooth/BluetoothCodecStatus.java
index 78560d2de4..32bb681f2e 100644
--- a/framework/java/android/bluetooth/BluetoothCodecStatus.java
+++ b/framework/java/android/bluetooth/BluetoothCodecStatus.java
@@ -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);
}