We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f9289bb commit a199a10Copy full SHA for a199a10
1 file changed
src/vs/base/common/map.ts
@@ -18,7 +18,7 @@ export function values<V>(forEachable: { forEach(callback: (value: V, ...more: a
18
19
export function keys<K, V>(map: Map<K, V>): K[] {
20
const result: K[] = [];
21
- map.forEach((value, key) => result.push(key));
+ map.forEach((_value, key) => result.push(key));
22
23
return result;
24
}
@@ -482,8 +482,6 @@ export class ResourceMap<T> {
482
483
484
485
-// We should fold BoundedMap and LinkedMap. See https://github.com/Microsoft/vscode/issues/28496
486
-
487
interface Item<K, V> {
488
previous: Item<K, V> | undefined;
489
next: Item<K, V> | undefined;
0 commit comments