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 2018/04/29 17:48:47 UTC

commons-compress git commit: COMPRESS-118 should have specified type parameter

Repository: commons-compress
Updated Branches:
  refs/heads/master 30a595d0d -> 251936e2e


COMPRESS-118 should have specified type parameter


Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/251936e2
Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/251936e2
Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/251936e2

Branch: refs/heads/master
Commit: 251936e2ed5ee2d784569d3fc28aefa9fc816a8b
Parents: 30a595d
Author: Stefan Bodewig <bo...@apache.org>
Authored: Sun Apr 29 19:48:21 2018 +0200
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Sun Apr 29 19:48:21 2018 +0200

----------------------------------------------------------------------
 .../org/apache/commons/compress/archivers/examples/Archive.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/251936e2/src/main/java/org/apache/commons/compress/archivers/examples/Archive.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/compress/archivers/examples/Archive.java b/src/main/java/org/apache/commons/compress/archivers/examples/Archive.java
index d360314..3415c3b 100644
--- a/src/main/java/org/apache/commons/compress/archivers/examples/Archive.java
+++ b/src/main/java/org/apache/commons/compress/archivers/examples/Archive.java
@@ -52,7 +52,7 @@ public class Archive {
         /**
          * Adds a transformer to the chain.
          */
-        ChainBuilder map(Transformer transformer);
+        ChainBuilder map(Transformer<File> transformer);
         /**
          * Actually consumes all the files supplied.
          */