MCPcopy Index your code
hub / github.com/arduino/Arduino / accept

Method accept

app/src/processing/app/Editor.java:814–821  ·  view source on GitHub ↗
(File folder)

Source from the content-addressed store, hash-verified

812
813 File[] folders = sourceFolder.listFiles(new FileFilter() {
814 public boolean accept(File folder) {
815 if (folder.isDirectory()) {
816 //System.out.println("checking " + folder);
817 File subfolder = new File(folder, "tool");
818 return subfolder.exists();
819 }
820 return false;
821 }
822 });
823
824 if (folders == null || folders.length == 0) {

Callers

nothing calls this directly

Calls 1

existsMethod · 0.45

Tested by

no test coverage detected