Small fix for resource links in liver hover

This commit is contained in:
Kris De Volder
2018-04-24 13:36:41 -07:00
parent b9f9c8d119
commit b2985ae4e2

View File

@@ -66,7 +66,8 @@ public class ClasspathUtil {
}
}
}
Classpath classpath = new Classpath(cpEntries, javaProject.getOutputLocation().toString());
Classpath classpath = new Classpath(cpEntries, resolveWorkspacePath(javaProject.getOutputLocation()).toString());
log("classpath.outputFolder=" + classpath.getDefaultOutputFolder());
log("classpath=" + classpath.getEntries().size() + " entries");
return classpath;
}