Bug 942611 - Fix missing parameter qualifier. r=rewman CLOSED TREE

This commit is contained in:
Wes Johnston 2014-03-06 12:57:42 -08:00
Родитель 1212eb0014
Коммит f31abf8947
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -2060,7 +2060,7 @@ public abstract class GeckoApp
// If we haven't done it before, cleanup any old files in our old temp dir // If we haven't done it before, cleanup any old files in our old temp dir
if (prefs.getBoolean(GeckoApp.PREFS_CLEANUP_TEMP_FILES, true)) { if (prefs.getBoolean(GeckoApp.PREFS_CLEANUP_TEMP_FILES, true)) {
File tempDir = GeckoLoader.getGREDir(this); File tempDir = GeckoLoader.getGREDir(GeckoApp.this);
FileUtils.delTree(tempDir, new FileUtils.NameAndAgeFilter(null, ONE_DAY_MS), false); FileUtils.delTree(tempDir, new FileUtils.NameAndAgeFilter(null, ONE_DAY_MS), false);
editor.putBoolean(GeckoApp.PREFS_CLEANUP_TEMP_FILES, false); editor.putBoolean(GeckoApp.PREFS_CLEANUP_TEMP_FILES, false);