File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
arduino-core/src/cc/arduino/contributions/libraries Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ public class LibrariesIndexer {
60
60
private LibrariesIndex index ;
61
61
private final LibraryList installedLibraries = new LibraryList ();
62
62
private final LibraryList installedLibrariesWithDuplicates = new LibraryList ();
63
- private ArrayList <File > librariesFolders ;
63
+ private List <File > librariesFolders ;
64
64
private final File indexFile ;
65
65
private final File stagingFolder ;
66
66
private File sketchbookLibrariesFolder ;
@@ -101,12 +101,12 @@ private void parseIndex(File file) throws IOException {
101
101
}
102
102
}
103
103
104
- public void setLibrariesFolders (ArrayList <File > _librariesFolders ) {
104
+ public void setLibrariesFolders (List <File > _librariesFolders ) {
105
105
librariesFolders = _librariesFolders ;
106
106
rescanLibraries ();
107
107
}
108
108
109
- public ArrayList <File > getLibrariesFolders () {
109
+ public List <File > getLibrariesFolders () {
110
110
return librariesFolders ;
111
111
}
112
112
You can’t perform that action at this time.
0 commit comments