src/Java.st
branchjk_new_structure
changeset 1595 164250a2ca43
parent 1591 f5b78c5ef516
child 1612 ba527b3b17aa
--- a/src/Java.st	Mon Aug 13 10:43:23 2012 +0000
+++ b/src/Java.st	Mon Aug 13 22:11:59 2012 +0000
@@ -412,8 +412,8 @@
         url := file perform: #'toURL()Ljava/net/URL;'.
         urls at: index put: url
     ].
-    ucp := (Java classForName:'sun.misc.URLClassPath') new
-            perform: #'<init>([Ljava/net/URL;)V' with: urls.
+    ucp := (Java classForName:'sun.misc.URLClassPath') new.
+    ucp perform: #'<init>([Ljava/net/URL;)V' with: urls.
     scl instVarNamed: #ucp put: ucp.
 
     "Created: / 02-08-2012 / 16:04:16 / Jan Vrany <jan.vrany@fit.cvut.cz>"