remove layer breaker

This commit is contained in:
rebornix
2020-11-24 11:12:15 -08:00
parent 40a81495f2
commit fd15b93261

View File

@@ -437,9 +437,9 @@ export class ExtHostNotebookController implements ExtHostNotebookShape, ExtHostN
}
if (editorId) {
throw new Error(`Could NOT open editor for "${document.documentURI.toString()}" because another editor opened in the meantime.`);
throw new Error(`Could NOT open editor for "${notebookDocument.toString()}" because another editor opened in the meantime.`);
} else {
throw new Error(`Could NOT open editor for "${document.documentURI.toString()}".`);
throw new Error(`Could NOT open editor for "${notebookDocument.toString()}".`);
}
}