#43645 Lift off proposed api flag

This commit is contained in:
Sandeep Somavarapu
2018-04-26 12:29:49 +02:00
parent cb982cab99
commit b1f5a4d5df

View File

@@ -92,10 +92,6 @@ class ViewsContainersExtensionHandler implements IWorkbenchContribution {
viewsContainersExtensionPoint.setHandler((extensions) => {
for (let extension of extensions) {
const { value, collector } = extension;
if (!extension.description.enableProposedApi) {
collector.error(localize({ key: 'proposed', comment: ['Contribution refers to those that an extension contributes to VS Code through an extension/contribution point. '] }, "'viewsContainers' contribution is only available when running out of dev or with the following command line switch: --enable-proposed-api {0}", extension.description.id));
continue;
}
forEach(value, entry => {
if (!this.isValidViewsContainer(entry.value, collector)) {
return;