Bug 742593 - SetupSyncActivity does main thread networking. r=rnewman

This commit is contained in:
Chenxia Liu 2012-04-04 17:33:08 -07:00
parent 3809c5edd2
commit 7b20f87dbf

View File

@ -85,6 +85,11 @@ public class DeleteChannel {
}
};
httpResource.delete();
jClient.runOnThread(new Runnable() {
@Override
public void run() {
httpResource.delete();
}
});
}
}