зеркало из https://github.com/mozilla/gecko-dev.git
Bug 797151 - Use Froyo api for saving SharedPrefereces. r=mfinkle
This commit is contained in:
Родитель
181d56439e
Коммит
003b5c2ec4
|
@ -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();
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Загрузка…
Ссылка в новой задаче