We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5340806 commit 8767cd5Copy full SHA for 8767cd5
arduino-core/src/cc/arduino/contributions/libraries/LibrariesIndexer.java
@@ -216,7 +216,7 @@ public LibrariesIndex getIndex() {
216
}
217
218
public LibraryList getInstalledLibraries() {
219
- return installedLibraries;
+ return new LibraryList(installedLibraries);
220
221
222
// Same as getInstalledLibraries(), but allow duplicates between
@@ -236,8 +236,6 @@ public File getStagingFolder() {
236
* Set the sketchbook library folder. <br />
237
* New libraries will be installed here. <br />
238
* Libraries not found on this folder will be marked as read-only.
239
- *
240
- * @param folder
241
*/
242
public void setSketchbookLibrariesFolder(File folder) {
243
this.sketchbookLibrariesFolder = folder;
0 commit comments