mirror of
https://github.com/Eaglercraft-TeaVM-Fork/eagler-teavm.git
synced 2024-12-22 08:14:09 -08:00
This commit is contained in:
parent
cfcd25b159
commit
7da1e61a8f
|
@ -475,7 +475,10 @@ public class TeaVMProjectBuilder extends IncrementalProjectBuilder {
|
|||
case IClasspathEntry.CPE_SOURCE:
|
||||
if (entry.getOutputLocation() != null) {
|
||||
try {
|
||||
collector.addPath(workspaceRoot.findMember(entry.getOutputLocation()).getLocation());
|
||||
IResource res = workspaceRoot.findMember(entry.getOutputLocation());
|
||||
if (res != null) {
|
||||
collector.addPath(res.getLocation());
|
||||
}
|
||||
} catch (MalformedURLException e) {
|
||||
TeaVMEclipsePlugin.logError(e);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user