~ubuntu-branches/ubuntu/utopic/libcommons-compress-java/utopic

« back to all changes in this revision

Viewing changes to src/main/java/org/apache/commons/compress/changes/ChangeSetPerformer.java

  • Committer: Package Import Robot
  • Author(s): Emmanuel Bourg
  • Date: 2014-03-13 08:37:01 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20140313083701-spnlyo3fl3qcp0ab
Tags: 1.8-1
* New upstream release
* Updated the OSGi metadata
* The dependency on libxz-java is now suggested and no longer required

Show diffs side-by-side

added added

removed removed

Lines of Context:
268
268
            return nestedEnum.hasMoreElements();
269
269
        }
270
270
        public ArchiveEntry next() {
271
 
            return (current = nestedEnum.nextElement());
 
271
            return current = nestedEnum.nextElement();
272
272
        }
273
273
        public InputStream getInputStream() throws IOException {
274
274
            return in.getInputStream(current);