Skip to content

Commit a199a10

Browse files
committed
💄
1 parent f9289bb commit a199a10

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

src/vs/base/common/map.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export function values<V>(forEachable: { forEach(callback: (value: V, ...more: a
1818

1919
export function keys<K, V>(map: Map<K, V>): K[] {
2020
const result: K[] = [];
21-
map.forEach((value, key) => result.push(key));
21+
map.forEach((_value, key) => result.push(key));
2222

2323
return result;
2424
}
@@ -482,8 +482,6 @@ export class ResourceMap<T> {
482482
}
483483
}
484484

485-
// We should fold BoundedMap and LinkedMap. See https://github.com/Microsoft/vscode/issues/28496
486-
487485
interface Item<K, V> {
488486
previous: Item<K, V> | undefined;
489487
next: Item<K, V> | undefined;

0 commit comments

Comments
 (0)