public CygwinPathMapper() throws CoreException
{
try
{
ProcessExecutor executor = new ProcessExecutor();
ProcessOutput output =
executor.execute(new String[] { "mount" }, "", new File("."), null);
initMappings(output.stdout.replaceAll("\n", "\r\n"));
}
catch (InterruptedException e) { /* can't occur */ }