Skip to content

Commit 97e3824

Browse files
author
Akos Kitta
committed
dropped old way of calculating sketchbook content
Signed-off-by: Akos Kitta <a.kitta@arduino.cc>
1 parent 46699d8 commit 97e3824

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

arduino-ide-extension/src/node/sketches-service-impl.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,10 @@ export class SketchesServiceImpl
5555
uri?: string;
5656
exclude?: string[];
5757
}): Promise<SketchContainer> {
58-
const [old, _new] = await Promise.all([
59-
this.getSketchesOld({ uri, exclude }),
58+
const [/*old,*/ _new] = await Promise.all([
59+
// this.getSketchesOld({ uri, exclude }),
6060
this.getSketchesNew({ uri, exclude }),
6161
]);
62-
console.log(typeof old);
6362
return _new;
6463
}
6564

0 commit comments

Comments
 (0)