Skip to content

Commit 643164d

Browse files
committed
illegal source path folders are now ignored instead of reason for abort
1 parent 1de9620 commit 643164d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lang/java/m3/internal/EclipseJavaCompiler.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ protected String[] translatePaths(IList paths) {
292292
for (IValue p : paths) {
293293
ISourceLocation loc = safeResolve((ISourceLocation)p);
294294
if (!loc.getScheme().equals("file")) {
295-
throw RuntimeExceptionFactory.io(VF.string("all path entries must have (or resolve to) the file:/// scheme: " + loc), null, null);
295+
monitor.warning("skipped unresolvable path (must be file:/// scheme) ", loc);
296296
}
297297
result[i++] = new File(loc.getPath()).getAbsolutePath();
298298
}

0 commit comments

Comments
 (0)