Merge "Change MetadataListener to a abstract static class"

This commit is contained in:
Treehugger Robot
2019-01-24 07:07:49 +00:00
committed by Gerrit Code Review
2 changed files with 2 additions and 2 deletions

View File

@@ -735,7 +735,7 @@ package android.bluetooth {
field public static final String ACTION_REQUEST_BLE_SCAN_ALWAYS_AVAILABLE = "android.bluetooth.adapter.action.REQUEST_BLE_SCAN_ALWAYS_AVAILABLE"; field public static final String ACTION_REQUEST_BLE_SCAN_ALWAYS_AVAILABLE = "android.bluetooth.adapter.action.REQUEST_BLE_SCAN_ALWAYS_AVAILABLE";
} }
public abstract class BluetoothAdapter.MetadataListener { public abstract static class BluetoothAdapter.MetadataListener {
ctor public BluetoothAdapter.MetadataListener(); ctor public BluetoothAdapter.MetadataListener();
method public void onMetadataChanged(android.bluetooth.BluetoothDevice, int, String); method public void onMetadataChanged(android.bluetooth.BluetoothDevice, int, String);
} }

View File

@@ -3276,7 +3276,7 @@ public final class BluetoothAdapter {
* @hide * @hide
*/ */
@SystemApi @SystemApi
public abstract class MetadataListener { public abstract static class MetadataListener {
/** /**
* Callback triggered if the metadata of {@link BluetoothDevice} registered in * Callback triggered if the metadata of {@link BluetoothDevice} registered in
* {@link #registerMetadataListener}. * {@link #registerMetadataListener}.