You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by bo...@apache.org on 2019/08/18 12:34:40 UTC

[commons-compress] branch master updated: COMPRESS-479 revert binary backwards incompatible change

This is an automated email from the ASF dual-hosted git repository.

bodewig pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-compress.git


The following commit(s) were added to refs/heads/master by this push:
     new d88aa22  COMPRESS-479 revert binary backwards incompatible change
d88aa22 is described below

commit d88aa2236a7cb4f46f0cf9bacf419c8cbebc0e2a
Author: Stefan Bodewig <bo...@apache.org>
AuthorDate: Sun Aug 18 14:33:58 2019 +0200

    COMPRESS-479 revert binary backwards incompatible change
---
 .../java/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.java b/src/main/java/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.java
index d0309e7..feb46e3 100644
--- a/src/main/java/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.java
+++ b/src/main/java/org/apache/commons/compress/archivers/zip/ExtraFieldUtils.java
@@ -153,7 +153,7 @@ public class ExtraFieldUtils {
      * @since 1.1
      */
     public static ZipExtraField[] parse(final byte[] data, final boolean local,
-                                        final UnparseableExtraFieldBehavior onUnparseableData)
+                                        final UnparseableExtraField onUnparseableData)
         throws ZipException {
         return parse(data, local, new ExtraFieldParsingBehavior() {
             @Override