~ubuntu-branches/debian/stretch/libcommons-compress-java/stretch

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/compress/archivers/zip/AbstractUnicodeExtraField.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-05-19 18:13:11 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20140519181311-qw0qtmfj7oahttca
Tags: 1.8.1-1
* New upstream release
* Removed 01-optional-xz-dependency.patch
* Updated the OSGi metadata
* Moved the package to Git

Show diffs side-by-side

added added

removed removed

Lines of Context:
143
143
        if (data == null) {
144
144
            assembleData();
145
145
        }
146
 
        return new ZipShort(data.length);
 
146
        return new ZipShort(data != null ? data.length : 0);
147
147
    }
148
148
 
149
149
    public byte[] getLocalFileDataData() {