Fix cache typo in UserSettings

This commit is contained in:
Vince 2013-06-17 21:23:21 +02:00
parent 9a3a87bd57
commit 2691b23c09

View File

@ -21,7 +21,7 @@
get : function (key) { get : function (key) {
this.checKeyValidity_(key); this.checKeyValidity_(key);
if (key in this.cache_) { if (key in this.cache_) {
return cache[key]; return this.cache_[key];
} }
return this.get_(key); return this.get_(key);
}, },