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; return index;
} }
public synchronized void releaseIndex(int index) { public synchronized void releaseIndex(final int index) {
mPrefs.edit() GeckoBackgroundThread.getHandler().post(new Runnable() {
.remove(appKey(index)) public void run() {
.remove(iconKey(index)) mPrefs.edit()
.apply(); .remove(appKey(index))
.remove(iconKey(index))
.commit();
}
});
} }
} }