--- a/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/MozillaPreviewPage.java Tue Feb 09 16:55:26 2010 -0800
+++ b/org.symbian.tools.wrttools.previewer/src/org/symbian/tools/wrttools/previewer/preview/MozillaPreviewPage.java Tue Feb 09 17:35:00 2010 -0800
@@ -2,7 +2,6 @@
import java.io.File;
import java.io.IOException;
-import java.net.URISyntaxException;
import java.net.URL;
import org.eclipse.core.net.proxy.IProxyData;
@@ -40,13 +39,11 @@
if (resourceUrl != null) {
try {
URL fileUrl = FileLocator.toFileURL(resourceUrl);
- File file = new File(fileUrl.toURI());
+ File file = new File(fileUrl.getPath());
System.setProperty(XUL_RUNNER_PATH_PARAMETER, file
.getAbsolutePath()); //$NON-NLS-1$
} catch (IOException e) {
- // log the exception
- } catch (URISyntaxException e) {
- // log the exception
+ PreviewerPlugin.log(e);
}
}
}