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 84ca24b  COMPRESS-530 typo
84ca24b is described below

commit 84ca24bd001153f45d1e9f97b1b45090fb340ece
Author: Stefan Bodewig <[email protected]>
AuthorDate: Sun May 31 13:14:24 2020 +0200

    COMPRESS-530 typo
---
 .../apache/commons/compress/archivers/tar/TarArchiveInputStream.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java
 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java
index 393d0a4..5a9874a 100644
--- 
a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java
+++ 
b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveInputStream.java
@@ -748,7 +748,7 @@ public class TarArchiveInputStream extends 
ArchiveInputStream {
 
                 // COMPRESS-530 : throw if we encounter a non-number while 
reading length
                 if (ch < '0' || ch > '9') {
-                    throw new IOException("Failed to read Paxheader. Encounter 
a non-number while reading length");
+                    throw new IOException("Failed to read Paxheader. 
Encountered a non-number while reading length");
                 }
 
                 len *= 10;

Reply via email to