Skip to content

Commit e1b1f89

Browse files
committed
parallelize additional jsons download
1 parent 2bd7b9a commit e1b1f89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

arduino-core/src/cc/arduino/contributions/packages/ContributionInstaller.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -290,13 +290,13 @@ public synchronized List<String> updateIndex(ProgressListener progressListener)
290290
packageIndexURLs.addAll(Arrays.asList(additionalURLs.split(",")));
291291
}
292292

293-
for (String packageIndexURL : packageIndexURLs) {
293+
packageIndexURLs.parallelStream().forEach(packageIndexURL -> {
294294
try {
295295
downloadIndexAndSignature(progress, downloadedPackageIndexFilesAccumulator, packageIndexURL, progressListener);
296296
} catch (Exception e) {
297297
System.err.println(e.getMessage());
298298
}
299-
}
299+
});
300300

301301
progress.stepDone();
302302

0 commit comments

Comments
 (0)