summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2011-05-03 23:05:18 +0200
committerJulien Nabet <serval2412@yahoo.fr>2011-05-03 23:05:18 +0200
commita2e1469555348896389ab21194d4b7680abc37eb (patch)
tree9d686d7f9e54082826c6b4ed04c6f711027bc26c
parenta8b5e6b429ec1c3d7221d223ab866fec02b4c062 (diff)
Change <file>.toURL() to <file>.toURI().toURL()
-rw-r--r--qadevOOo/runner/helper/URLHelper.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/qadevOOo/runner/helper/URLHelper.java b/qadevOOo/runner/helper/URLHelper.java
index 587d7de8d..442623b25 100644
--- a/qadevOOo/runner/helper/URLHelper.java
+++ b/qadevOOo/runner/helper/URLHelper.java
@@ -68,8 +68,7 @@ public class URLHelper
String sFileURL = null;
try
{
- //sFileURL = aSystemPath.toURI().toURL().toString();
- sFileURL = aSystemPath.toURL().toString();
+ sFileURL = aSystemPath.toURI().toURL().toString();
}
catch( MalformedURLException exWrong )
{