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 {
90
90
return this . builtInExamplesService . builtIns ( ) ;
91
91
}
92
92
93
- async installed ( {
94
- fqbn,
95
- forceRefresh,
96
- } : {
97
- fqbn ?: string ;
98
- forceRefresh ?: boolean ;
99
- } ) : Promise < {
93
+ async installed ( { fqbn } : { fqbn ?: string } ) : Promise < {
100
94
user : SketchContainer [ ] ;
101
95
current : SketchContainer [ ] ;
102
96
any : SketchContainer [ ] ;
103
97
} > {
104
98
const user : SketchContainer [ ] = [ ] ;
105
99
const current : SketchContainer [ ] = [ ] ;
106
100
const any : SketchContainer [ ] = [ ] ;
107
- if ( forceRefresh ) {
108
- await this . libraryService . refresh ( ) ;
109
- }
110
101
const packages : LibraryPackage [ ] = await this . libraryService . list ( {
111
102
fqbn,
112
103
} ) ;
You can’t perform that action at this time.
0 commit comments