/[classpath]/classpath/java/util/jar/JarFile.java
ViewVC logotype

Diff of /classpath/java/util/jar/JarFile.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.8 by jewel, Mon Feb 3 14:24:32 2003 UTC revision 1.9 by mark, Wed Feb 5 00:05:03 2003 UTC
# Line 1  Line 1 
1  /* JarFile.java - Representation of a jar file  /* JarFile.java - Representation of a jar file
2     Copyright (C) 2000 Free Software Foundation, Inc.     Copyright (C) 2000, 2003 Free Software Foundation, Inc.
3    
4  This file is part of GNU Classpath.  This file is part of GNU Classpath.
5    
# Line 109  public class JarFile extends ZipFile Line 109  public class JarFile extends ZipFile
109      FileNotFoundException, IOException      FileNotFoundException, IOException
110    {    {
111      super(fileName);      super(fileName);
112      if (verify) {      if (verify)
113          {
114          manifest = readManifest();          manifest = readManifest();
115          verify();          verify();
116      }        }
117    }    }
118    
119    /**    /**
# Line 145  public class JarFile extends ZipFile Line 146  public class JarFile extends ZipFile
146      IOException      IOException
147    {    {
148      super(file);      super(file);
149      if (verify) {      if (verify)
150          {
151          manifest = readManifest();          manifest = readManifest();
152          verify();          verify();
153      }        }
154    }    }
155    
156    /**    /**
# Line 173  public class JarFile extends ZipFile Line 175  public class JarFile extends ZipFile
175      FileNotFoundException, IOException, IllegalArgumentException      FileNotFoundException, IOException, IllegalArgumentException
176    {    {
177      super(file, mode);      super(file, mode);
178      if (verify) {      if (verify)
179          {
180          manifest = readManifest();          manifest = readManifest();
181          verify();          verify();
182      }        }
183    }    }
184    
185    // Methods    // Methods

Legend:
Removed from v.1.8  
changed lines
  Added in v.1.9

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26