We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3278173 commit 82eb16eCopy full SHA for 82eb16e
arduino-core/src/processing/app/Sketch.java
@@ -1,7 +1,6 @@
1
package processing.app;
2
3
-import java.io.File;
4
-import java.io.IOException;
+import java.io.*;
5
import java.nio.file.Files;
6
import java.util.*;
7
import java.util.stream.Collectors;
@@ -25,11 +24,10 @@ public class Sketch {
25
24
/**
26
* folder that contains this sketch
27
*/
28
- private File folder;
+ private File folder , buildPath;
29
30
private List<SketchFile> files = new ArrayList<>();
31
32
- private File buildPath;
33
34
public static final Comparator<SketchFile> CODE_DOCS_COMPARATOR = new Comparator<SketchFile>() {
35
@Override
0 commit comments