File tree Expand file tree Collapse file tree 1 file changed +1
-10
lines changed
arduino-ide-extension/src/node Expand file tree Collapse file tree 1 file changed +1
-10
lines changed Original file line number Diff line number Diff line change @@ -90,23 +90,14 @@ export class ExamplesServiceImpl implements ExamplesService {
9090 return this . builtInExamplesService . builtIns ( ) ;
9191 }
9292
93- async installed ( {
94- fqbn,
95- forceRefresh,
96- } : {
97- fqbn ?: string ;
98- forceRefresh ?: boolean ;
99- } ) : Promise < {
93+ async installed ( { fqbn } : { fqbn ?: string } ) : Promise < {
10094 user : SketchContainer [ ] ;
10195 current : SketchContainer [ ] ;
10296 any : SketchContainer [ ] ;
10397 } > {
10498 const user : SketchContainer [ ] = [ ] ;
10599 const current : SketchContainer [ ] = [ ] ;
106100 const any : SketchContainer [ ] = [ ] ;
107- if ( forceRefresh ) {
108- await this . libraryService . refresh ( ) ;
109- }
110101 const packages : LibraryPackage [ ] = await this . libraryService . list ( {
111102 fqbn,
112103 } ) ;
You can’t perform that action at this time.
0 commit comments