[jboss-cvs] JBossAS SVN: r74266 - trunk/ejb3/src/main/org/jboss/ejb3/deployers/hack/zip.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Jun 6 12:10:00 EDT 2008


Author: alesj
Date: 2008-06-06 12:10:00 -0400 (Fri, 06 Jun 2008)
New Revision: 74266

Modified:
   trunk/ejb3/src/main/org/jboss/ejb3/deployers/hack/zip/Handler.java
Log:
Fix the var name.

Modified: trunk/ejb3/src/main/org/jboss/ejb3/deployers/hack/zip/Handler.java
===================================================================
--- trunk/ejb3/src/main/org/jboss/ejb3/deployers/hack/zip/Handler.java	2008-06-06 16:01:25 UTC (rev 74265)
+++ trunk/ejb3/src/main/org/jboss/ejb3/deployers/hack/zip/Handler.java	2008-06-06 16:10:00 UTC (rev 74266)
@@ -36,7 +36,7 @@
 {
    protected URLConnection openConnection(URL url) throws IOException
    {
-      URL jarUrl = new URL("file" + url.toExternalForm().substring(3));
-      return jarUrl.openConnection();
+      URL fileUrl = new URL("file" + url.toExternalForm().substring(3));
+      return fileUrl.openConnection();
    }
 }




More information about the jboss-cvs-commits mailing list