mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 01:25:37 -05:00
Remove unnecessary awaits from extensions (#19571)
* Remove unnecessary awaits * fix ignore * revert eslintignore * try * increase size * Increase sql lint size
This commit is contained in:
@@ -1264,7 +1264,7 @@ export class Project implements ISqlProject {
|
||||
*/
|
||||
private async undoExcludeFileFromProjFile(xmlTag: string, relativePath: string): Promise<void> {
|
||||
const nodes = this.projFileXmlDoc!.documentElement.getElementsByTagName(xmlTag);
|
||||
if (await this.removeNode(relativePath, nodes, true)) {
|
||||
if (this.removeNode(relativePath, nodes, true)) {
|
||||
await this.serializeToProjFile(this.projFileXmlDoc!);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user