Skip to content

Commit 11d3145

Browse files
committed
Removed the extra debug prints
Tested the solution. Works. Removed the extra added debug prints.
1 parent e21e794 commit 11d3145

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

arduino-core/src/processing/app/Sketch.java

-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,6 @@ public boolean reload() throws IOException {
106106
private List<SketchFile> listSketchFiles(boolean showWarnings) throws IOException {
107107
Set<SketchFile> result = new TreeSet<>(CODE_DOCS_COMPARATOR);
108108
for (File file : FileUtils.listFiles(folder, false, EXTENSIONS)) {
109-
System.out.println("File found: " + file.getName()); //added for debug
110109
if (BaseNoGui.isSanitaryName(FileUtils.splitFilename(file).basename)) {
111110
result.add(new SketchFile(this, file));
112111
} else if (showWarnings) {
@@ -355,7 +354,6 @@ public void saveAs(File newFolder) throws IOException {
355354

356355
// Copy the data folder (this may take a while.. add progress bar?)
357356
if (getDataFolder().exists()) {
358-
System.out.println("Data folder is found and exists.");
359357
File newDataFolder = new File(newFolder, "data");
360358
// Create the data folder
361359
if (!newDataFolder.mkdirs()) {

0 commit comments

Comments
 (0)