We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc85ea6 commit a54acceCopy full SHA for a54acce
arduino-ide-extension/src/node/examples-service-impl.ts
@@ -90,23 +90,14 @@ export class ExamplesServiceImpl implements ExamplesService {
90
return this.builtInExamplesService.builtIns();
91
}
92
93
- async installed({
94
- fqbn,
95
- forceRefresh,
96
- }: {
97
- fqbn?: string;
98
- forceRefresh?: boolean;
99
- }): Promise<{
+ async installed({ fqbn }: { fqbn?: string }): Promise<{
100
user: SketchContainer[];
101
current: SketchContainer[];
102
any: SketchContainer[];
103
}> {
104
const user: SketchContainer[] = [];
105
const current: SketchContainer[] = [];
106
const any: SketchContainer[] = [];
107
- if (forceRefresh) {
108
- await this.libraryService.refresh();
109
- }
110
const packages: LibraryPackage[] = await this.libraryService.list({
111
fqbn,
112
});
0 commit comments