mirror of
https://github.com/processing/processing4.git
synced 2026-02-10 17:19:25 +01:00
clearing up bugs and attempting a compile
This commit is contained in:
@@ -399,7 +399,8 @@ public class PdeBase {
|
||||
}
|
||||
|
||||
|
||||
static public void copyDir(File sourceDir, File targetDir) {
|
||||
static public void copyDir(File sourceDir,
|
||||
File targetDir) throws IOException {
|
||||
String files[] = sourceDir.list();
|
||||
for (int i = 0; i < files.length; i++) {
|
||||
if (files[i].equals(".") || files[i].equals("..")) continue;
|
||||
|
||||
Reference in New Issue
Block a user