Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Sketch.java #12015

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update Sketch.java
  • Loading branch information
toaha63 authored Dec 14, 2024
commit 82eb16e50351fc526adf3ee7cc81ccc71d758503
6 changes: 2 additions & 4 deletions arduino-core/src/processing/app/Sketch.java
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package processing.app;

import java.io.File;
import java.io.IOException;
import java.io.*;
import java.nio.file.Files;
import java.util.*;
import java.util.stream.Collectors;
@@ -25,11 +24,10 @@ public class Sketch {
/**
* folder that contains this sketch
*/
private File folder;
private File folder , buildPath;

private List<SketchFile> files = new ArrayList<>();

private File buildPath;

public static final Comparator<SketchFile> CODE_DOCS_COMPARATOR = new Comparator<SketchFile>() {
@Override
Loading
Oops, something went wrong.