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