Bug 797151 - Use Froyo api for saving SharedPrefereces. r=mfinkle

This commit is contained in:
Wes Johnston 2012-10-02 18:58:03 -07:00
Родитель 181d56439e
Коммит 003b5c2ec4
1 изменённых файлов: 9 добавлений и 5 удалений

Просмотреть файл

@ -123,10 +123,14 @@ public class WebAppAllocator {
return index;
}
public synchronized void releaseIndex(int index) {
mPrefs.edit()
.remove(appKey(index))
.remove(iconKey(index))
.apply();
public synchronized void releaseIndex(final int index) {
GeckoBackgroundThread.getHandler().post(new Runnable() {
public void run() {
mPrefs.edit()
.remove(appKey(index))
.remove(iconKey(index))
.commit();
}
});
}
}