Skip to content

Commit

Permalink
Update Sketch.java
Browse files Browse the repository at this point in the history
  • Loading branch information
toaha63 authored Dec 14, 2024
1 parent 3278173 commit 82eb16e
Showing 1 changed file with 2 additions and 4 deletions.
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;
Expand All @@ -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
Expand Down

0 comments on commit 82eb16e

Please sign in to comment.