Skip to content

Commit

Permalink
Remove unneeded "as any" (#172812)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexr00 authored Jan 30, 2023
1 parent bec74ea commit 4e0f349
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export class AbstractVariableResolverService implements IConfigurationResolverSe

private async resolveAnyBase(workspaceFolder: IWorkspaceFolder | undefined, config: any, commandValueMapping?: IStringDictionary<string>, resolvedVariables?: Map<string, string>): Promise<any> {

const result = objects.deepClone(config) as any;
const result = objects.deepClone(config);

// hoist platform specific attributes to top level
if (isWindows && result.windows) {
Expand Down

0 comments on commit 4e0f349

Please sign in to comment.