User: fleury  
  Date: 00/05/16 17:30:23

  Modified:    src/java/org/ejboss/deployment EjbJar.java
  Log:
  We need the JarInputStream
  
  Revision  Changes    Path
  1.5       +2 -2      ejboss/src/java/org/ejboss/deployment/EjbJar.java
  
  Index: EjbJar.java
  ===================================================================
  RCS file: /products/cvs/ejboss/ejboss/src/java/org/ejboss/deployment/EjbJar.java,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- EjbJar.java       2000/05/17 00:25:49     1.4
  +++ EjbJar.java       2000/05/17 00:30:22     1.5
  @@ -228,7 +228,7 @@
   
               //Create a input stream from the distant URL
   
  -            JarInputStream jarInputStream = url.openStream();
  +            JarInputStream jarInputStream = new JarInputStream(url.openStream());
   
               JarEntry jarEntry = jarInputStream.getNextJarEntry();
   
  @@ -241,7 +241,7 @@
   
               // The input stream is at the right entry to read it
               
  -            document = xmlManager.load(new InputStreamReader(jarInputStream)
  +            document = xmlManager.load(new InputStreamReader(jarInputStream));
           }
   
           catch (IOException ioe) {
  
  
  

Reply via email to