Remove some vscode differences (#5010)

* remove some vscode differences

* add dates to todo comments
This commit is contained in:
Anthony Dresser
2019-04-12 21:55:07 -07:00
committed by GitHub
parent c5a32d8373
commit 6dbf757385
25 changed files with 34 additions and 94 deletions

View File

@@ -144,7 +144,7 @@ function globExprsToRgGlobs(patterns: glob.IExpression, folder?: string, exclude
}
globArgs.push(fixDriveC(key));
// {{SQL CARBON EDIT}} @todo anthonydresser cast value because we aren't using strict null checks
// {{SQL CARBON EDIT}} @todo anthonydresser 4/12/19 cast value because we aren't using strict null checks
} else if (value && (<glob.SiblingClause>value).when) {
siblingClauses[key] = value;
}

View File

@@ -740,7 +740,7 @@ export class TextFileService extends Disposable implements ITextFileService {
}
if (!targetResource) {
// {{SQL CARBON EDIT}} @todo anthonydresser necessary to add undefined till we enable strict null check
// {{SQL CARBON EDIT}} @todo anthonydresser 4/12/19 necessary to add undefined till we enable strict null check
return undefined; // user canceled
}
@@ -993,4 +993,4 @@ export class TextFileService extends Disposable implements ITextFileService {
super.dispose();
}
}
}