This commit is contained in:
Sandeep Somavarapu
2017-10-27 13:32:40 +02:00
parent 4473006497
commit bf63319e2e
2 changed files with 1 additions and 2 deletions

View File

@@ -98,7 +98,6 @@ export class ExtHostConfiguration implements ExtHostConfigurationShape {
},
update: (key: string, value: any, arg: ExtHostConfigurationTarget | boolean) => {
key = section ? `${section}.${key}` : key;
this._validateConfigurationAccess(key, resource, extensionId);
const target = parseConfigurationTarget(arg);
if (value !== void 0) {
return this._proxy.$updateConfigurationOption(target, key, value, resource);