use unset instead of delete, fixes schema bug

This commit is contained in:
Joe Fleming 2016-03-22 15:27:13 -07:00
parent 115128b459
commit 2ebd94d473

View file

@ -60,7 +60,7 @@ module.exports = class Config {
this[schema] = null;
unset(this[schemaExts], key);
unset(this[pendingSets], key);
delete this[vals][key];
unset(this[vals], key);
}
resetTo(obj) {