Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id C381C200D0B for ; Wed, 27 Sep 2017 17:33:42 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C1FA61609EB; Wed, 27 Sep 2017 15:33:42 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 134491609BC for ; Wed, 27 Sep 2017 17:33:41 +0200 (CEST) Received: (qmail 78470 invoked by uid 500); 27 Sep 2017 15:33:41 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 78461 invoked by uid 99); 27 Sep 2017 15:33:41 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 27 Sep 2017 15:33:41 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 15324F5568; Wed, 27 Sep 2017 15:33:41 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: bodewig@apache.org To: commits@commons.apache.org Date: Wed, 27 Sep 2017 15:33:41 -0000 Message-Id: <3b9b75bacbe6428fbe3c4756696e2ec7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [1/2] commons-compress git commit: Fix typo archived-at: Wed, 27 Sep 2017 15:33:43 -0000 Repository: commons-compress Updated Branches: refs/heads/master 93c9c6cf7 -> ab85408b3 Fix typo Project: http://git-wip-us.apache.org/repos/asf/commons-compress/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-compress/commit/661008f8 Tree: http://git-wip-us.apache.org/repos/asf/commons-compress/tree/661008f8 Diff: http://git-wip-us.apache.org/repos/asf/commons-compress/diff/661008f8 Branch: refs/heads/master Commit: 661008f8238acb71301b172a6aa9aaa8114d0c9c Parents: 93c9c6c Author: Aurélien Pupier Authored: Wed Sep 27 16:07:16 2017 +0200 Committer: Stefan Bodewig Committed: Wed Sep 27 17:32:54 2017 +0200 ---------------------------------------------------------------------- .../commons/compress/archivers/tar/TarArchiveOutputStream.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-compress/blob/661008f8/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java index 067f64e..7cff5e3 100644 --- a/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java +++ b/src/main/java/org/apache/commons/compress/archivers/tar/TarArchiveOutputStream.java @@ -274,7 +274,7 @@ public class TarArchiveOutputStream extends ArchiveOutputStream { } if (haveUnclosedEntry) { - throw new IOException("This archives contains unclosed entries."); + throw new IOException("This archive contains unclosed entries."); } writeEOFRecord(); writeEOFRecord();