djencks 2004/01/23 18:56:23
Modified: modules/deployment/src/java/org/apache/geronimo/deployment
ModuleDeployer.java
Log:
the source of some of my difficulties
Revision Changes Path
1.2 +2 -2
incubator-geronimo/modules/deployment/src/java/org/apache/geronimo/deployment/ModuleDeployer.java
Index: ModuleDeployer.java
===================================================================
RCS file:
/home/cvs/incubator-geronimo/modules/deployment/src/java/org/apache/geronimo/deployment/ModuleDeployer.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- ModuleDeployer.java 23 Jan 2004 19:58:16 -0000 1.1
+++ ModuleDeployer.java 24 Jan 2004 02:56:23 -0000 1.2
@@ -149,7 +149,7 @@
URI uri = (URI) i.next();
uri = configRoot.resolve(uri);
try {
- urls[idx] = uri.toURL();
+ urls[idx++] = uri.toURL();
} catch (MalformedURLException e) {
throw new DeploymentException("Unable to convert
classPath URI to absolute URL: " + uri, e);
}