Bug 1177774 - Update SharedPreferencesImpl constructor arg. r=nalexander

--HG--
extra : commitid : 6EcWFEEbhld
extra : rebase_source : 34275327b18884317f9bfbfd6b6b4004cf239e9d
This commit is contained in:
Michael Comella 2015-06-26 14:06:04 -07:00
Родитель a2dd275826
Коммит e97ff48038
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -61,7 +61,7 @@ let SharedPreferences = {
*/
function SharedPreferencesImpl(options = {}) {
if (!(this instanceof SharedPreferencesImpl)) {
return new SharedPreferencesImpl(level);
return new SharedPreferencesImpl(options);
}
if (options.scope == null || options.scope == undefined) {