remove some vscode differences (#12146)

This commit is contained in:
Anthony Dresser
2020-09-04 18:04:30 -07:00
committed by GitHub
parent 503090856a
commit 704222b8d7
31 changed files with 1118 additions and 66 deletions

View File

@@ -383,7 +383,7 @@ export class URI implements UriComponents {
static revive(data: UriComponents | URI | undefined | null): URI | undefined | null;
static revive(data: UriComponents | URI | undefined | null): URI | undefined | null {
if (!data) {
// {{SQL CARBON EDIT}} @todo chlafren change back to data when we enable strict null checks
// {{SQL CARBON EDIT}} strict-null-check
return undefined;
} else if (data instanceof URI) {
return data;