summaryrefslogtreecommitdiffstats
path: root/src/com/android/bluetooth/map/BluetoothMapObexServer.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/bluetooth/map/BluetoothMapObexServer.java')
-rwxr-xr-xsrc/com/android/bluetooth/map/BluetoothMapObexServer.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/com/android/bluetooth/map/BluetoothMapObexServer.java b/src/com/android/bluetooth/map/BluetoothMapObexServer.java
index bcb3bcc0a..53fedd9da 100755
--- a/src/com/android/bluetooth/map/BluetoothMapObexServer.java
+++ b/src/com/android/bluetooth/map/BluetoothMapObexServer.java
@@ -148,25 +148,6 @@ public class BluetoothMapObexServer extends ServerRequestHandler {
tmpFolder.addFolder("drafts");
}
- private void addEmailFolders(BluetoothMapFolderElement parentFolder) throws RemoteException {
- // Select all parent folders
- BluetoothMapFolderElement newFolder;
-
- String where = BluetoothMapContract.FolderColumns.PARENT_FOLDER_ID +
- " = " + parentFolder.getEmailFolderId();
- Cursor c = mProviderClient.query(mEmailFolderUri,
- BluetoothMapContract.BT_FOLDER_PROJECTION, where, null, null);
- try {
- while (c != null && c.moveToNext()) {
- String name = c.getString(c.getColumnIndex(BluetoothMapContract.FolderColumns.NAME));
- long id = c.getLong(c.getColumnIndex(BluetoothMapContract.FolderColumns._ID));
- newFolder = parentFolder.addEmailFolder(name, id);
- addEmailFolders(newFolder); // Use recursion to add any sub folders
- }
- } finally {
- if (c != null) c.close();
- }
- }
@Override
public int onConnect(final HeaderSet request, HeaderSet reply) {