/[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.10.2.2 by gnu_andrew, Sun Jan 16 15:15:12 2005 UTC revision 1.10.2.3 by gnu_andrew, Sun Mar 13 14:38:43 2005 UTC
# Line 726  public class JarFile extends ZipFile Line 726  public class JarFile extends ZipFile
726      byte[] entryBytes = null;      byte[] entryBytes = null;
727      try      try
728        {        {
729          entryBytes = readManifestEntry(super.getEntry(entry));          ZipEntry e = super.getEntry(entry);
730            if (e == null)
731              {
732                if (DEBUG)
733                  debug("verifyHashes: no entry '" + entry + "'");
734                return false;
735              }
736            entryBytes = readManifestEntry(e);
737        }        }
738      catch (IOException ioe)      catch (IOException ioe)
739        {        {

Legend:
Removed from v.1.10.2.2  
changed lines
  Added in v.1.10.2.3

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