mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 10:08:49 +01:00
#76442 fix implicit any
This commit is contained in:
@@ -205,7 +205,7 @@ class TreeViewDataProvider implements ITreeViewDataProvider {
|
||||
if (current) {
|
||||
const properties = distinct([...Object.keys(current), ...Object.keys(treeItem)]);
|
||||
for (const property of properties) {
|
||||
current[property] = treeItem[property];
|
||||
(<any>current)[property] = (<any>treeItem)[property];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user