Verified Commit a6f72b00 authored by Lukas Wiest's avatar Lukas Wiest 🚂
Browse files

refactor(app): buildClasspath: only add path if exists

parent 7c086338
......@@ -128,7 +128,11 @@ public class Testrunner
}
} else
{
files.add(new File(path));
File file = new File(path);
if (file.exists())
{
files.add(file);
}
}
}
return files;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment