diff options
author | Nick Pelly <npelly@google.com> | 2009-09-28 12:28:14 -0700 |
---|---|---|
committer | Nick Pelly <npelly@google.com> | 2009-09-28 13:05:28 -0700 |
commit | 079ee952bdfae560c36df1f1dcd3f1177e4afa47 (patch) | |
tree | 3234b81fffc6dd9d581414a4a22b626684095e62 /src | |
parent | 7b576e491718e9a6d3f0f66421eddbdfaa853d87 (diff) | |
download | packages_apps_settings-079ee952bdfae560c36df1f1dcd3f1177e4afa47.zip packages_apps_settings-079ee952bdfae560c36df1f1dcd3f1177e4afa47.tar.gz packages_apps_settings-079ee952bdfae560c36df1f1dcd3f1177e4afa47.tar.bz2 |
Update application for android.bluetooth.ParcelUuid -> android.os.ParcelUuid
Change-Id: Iebf2b3ea9cac224e3e6c67e503b1063491dce5bb
Diffstat (limited to 'src')
3 files changed, 3 insertions, 3 deletions
diff --git a/src/com/android/settings/bluetooth/BluetoothSettings.java b/src/com/android/settings/bluetooth/BluetoothSettings.java index d9d551d..4175a82 100644 --- a/src/com/android/settings/bluetooth/BluetoothSettings.java +++ b/src/com/android/settings/bluetooth/BluetoothSettings.java @@ -21,7 +21,7 @@ import android.bluetooth.BluetoothClass; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothDevicePicker; import android.bluetooth.BluetoothUuid; -import android.bluetooth.ParcelUuid; +import android.os.ParcelUuid; import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; diff --git a/src/com/android/settings/bluetooth/CachedBluetoothDevice.java b/src/com/android/settings/bluetooth/CachedBluetoothDevice.java index 0582aa1..859cf67 100644 --- a/src/com/android/settings/bluetooth/CachedBluetoothDevice.java +++ b/src/com/android/settings/bluetooth/CachedBluetoothDevice.java @@ -20,7 +20,7 @@ import android.app.AlertDialog; import android.bluetooth.BluetoothAdapter; import android.bluetooth.BluetoothClass; import android.bluetooth.BluetoothDevice; -import android.bluetooth.ParcelUuid; +import android.os.ParcelUuid; import android.content.Context; import android.content.DialogInterface; import android.content.Intent; diff --git a/src/com/android/settings/bluetooth/LocalBluetoothProfileManager.java b/src/com/android/settings/bluetooth/LocalBluetoothProfileManager.java index f3dea85..a6258e2 100644 --- a/src/com/android/settings/bluetooth/LocalBluetoothProfileManager.java +++ b/src/com/android/settings/bluetooth/LocalBluetoothProfileManager.java @@ -20,7 +20,7 @@ import android.bluetooth.BluetoothA2dp; import android.bluetooth.BluetoothDevice; import android.bluetooth.BluetoothHeadset; import android.bluetooth.BluetoothUuid; -import android.bluetooth.ParcelUuid; +import android.os.ParcelUuid; import android.os.Handler; import android.util.Log; |