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/06/07 19:09:57 UTC

[1/2] commons-compress git commit: Fix typo

Repository: commons-compress
Updated Branches:
  refs/heads/high-level-api-example 2b8171bd3 -> 7c23c2ae3


Fix typo

Change Craete -> Create


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

Branch: refs/heads/high-level-api-example
Commit: d7c1169c9e382a90d0d761d3f10510a48b4d1a22
Parents: 2b8171b
Author: Yishai Galatzer <yi...@microsoft.com>
Authored: Wed Jun 6 11:59:03 2018 -0700
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Thu Jun 7 21:09:09 2018 +0200

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


http://git-wip-us.apache.org/repos/asf/commons-compress/blob/d7c1169c/src/main/java/org/apache/commons/compress/archivers/Expander.java
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/commons/compress/archivers/Expander.java b/src/main/java/org/apache/commons/compress/archivers/Expander.java
index f726de7..9783886 100644
--- a/src/main/java/org/apache/commons/compress/archivers/Expander.java
+++ b/src/main/java/org/apache/commons/compress/archivers/Expander.java
@@ -391,7 +391,7 @@ public class Expander {
             File f = new File(targetDirectory, nextEntry.getName());
             if (!f.getCanonicalPath().startsWith(targetDirPath)) {
                 throw new IOException("expanding " + nextEntry.getName()
-                    + " would craete file outside of " + targetDirectory);
+                    + " would create file outside of " + targetDirectory);
             }
             if (nextEntry.isDirectory()) {
                 f.mkdirs();


[2/2] commons-compress git commit: closes #64

Posted by bo...@apache.org.
closes #64


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

Branch: refs/heads/high-level-api-example
Commit: 7c23c2ae3eccf1334ba10a0b48d523e74c072087
Parents: d7c1169
Author: Stefan Bodewig <bo...@apache.org>
Authored: Thu Jun 7 21:09:29 2018 +0200
Committer: Stefan Bodewig <bo...@apache.org>
Committed: Thu Jun 7 21:09:29 2018 +0200

----------------------------------------------------------------------

----------------------------------------------------------------------