[izpack-changes] r2028 - izpack-src/trunk/src/lib/com/izforge/izpack/compiler

noreply at berlios.de noreply at berlios.de
Tue Jan 29 00:33:22 CET 2008


Author: jgordon
Date: 2008-01-29 00:33:16 +0100 (Tue, 29 Jan 2008)
New Revision: 2028

Modified:
   izpack-src/trunk/src/lib/com/izforge/izpack/compiler/CompilerConfig.java
Log:
Backed out .toURL() changes.

Modified: izpack-src/trunk/src/lib/com/izforge/izpack/compiler/CompilerConfig.java
===================================================================
--- izpack-src/trunk/src/lib/com/izforge/izpack/compiler/CompilerConfig.java	2008-01-28 20:47:35 UTC (rev 2027)
+++ izpack-src/trunk/src/lib/com/izforge/izpack/compiler/CompilerConfig.java	2008-01-28 23:33:16 UTC (rev 2028)
@@ -1319,7 +1319,7 @@
                     os = new BufferedOutputStream(outFile);
                     // and specify the substituted file to be added to the
                     // packager
-                    url = parsedFile.toURI().toURL();
+                    url = parsedFile.toURL();
                 }
 
                 if (parsexml)
@@ -1826,7 +1826,7 @@
 
         try
         {
-            url = resource.toURI().toURL();
+            url = resource.toURL();
         }
         catch (MalformedURLException how)
         {
@@ -1862,7 +1862,7 @@
 
             try
             {
-                url = resource.toURI().toURL();
+                url = resource.toURL();
             }
             catch (MalformedURLException how)
             {
@@ -2457,7 +2457,7 @@
                     if (in != null) in.close();
                     if (outFile != null) outFile.close();
                 }
-                url = tf.toURI().toURL();
+                url = tf.toURL();
 
             }
             // Use the class loader of the interface as parent, else



More information about the izpack-changes mailing list