Skip to content

Commit 1e074cc

Browse files
author
Federico Fissore
committed
Whoops, a debuggin call to "peek" was committed. Removed.
1 parent 5fcf5e3 commit 1e074cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ private void executeScripts(File folder, Collection<File> postInstallScripts, bo
236236
}
237237

238238
public synchronized List<String> remove(ContributedPlatform contributedPlatform) {
239-
BaseNoGui.indexer.getPackages().stream().flatMap(p -> p.getPlatforms().stream()).filter(new InstalledPredicate()).peek(pl -> System.out.println(pl.getName() + " " + pl.getVersion())).collect(Collectors.toList());
239+
BaseNoGui.indexer.getPackages().stream().flatMap(p -> p.getPlatforms().stream()).filter(new InstalledPredicate()).collect(Collectors.toList());
240240
if (contributedPlatform == null || contributedPlatform.isReadOnly()) {
241241
return new LinkedList<>();
242242
}

0 commit comments

Comments
 (0)