From commits-return-71034-archive-asf-public=cust-asf.ponee.io@commons.apache.org Wed Dec 18 21:04:09 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id 5399D180660 for ; Wed, 18 Dec 2019 22:04:09 +0100 (CET) Received: (qmail 20898 invoked by uid 500); 18 Dec 2019 21:04:08 -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 20876 invoked by uid 99); 18 Dec 2019 21:04:08 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Dec 2019 21:04:08 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 98D0C855C9; Wed, 18 Dec 2019 21:04:07 +0000 (UTC) Date: Wed, 18 Dec 2019 21:04:08 +0000 To: "commits@commons.apache.org" Subject: [commons-csv] 01/02: Remove trailing white spaces on all lines. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: ggregory@apache.org In-Reply-To: <157670304720.7637.12487888143974963200@gitbox.apache.org> References: <157670304720.7637.12487888143974963200@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: commons-csv X-Git-Refname: refs/heads/master X-Git-Reftype: branch X-Git-Rev: 06dda31f5218c138c2eafbe27f154d2faa79b507 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20191218210407.98D0C855C9@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-csv.git commit 06dda31f5218c138c2eafbe27f154d2faa79b507 Author: Gary Gregory AuthorDate: Wed Dec 18 15:29:20 2019 -0500 Remove trailing white spaces on all lines. --- src/main/java/org/apache/commons/csv/CSVFormat.java | 2 +- src/test/java/org/apache/commons/csv/CSVFormatTest.java | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/csv/CSVFormat.java b/src/main/java/org/apache/commons/csv/CSVFormat.java index b7cf1ba..0742c93 100644 --- a/src/main/java/org/apache/commons/csv/CSVFormat.java +++ b/src/main/java/org/apache/commons/csv/CSVFormat.java @@ -1598,7 +1598,7 @@ public final class CSVFormat implements Serializable { } if (quoteMode != null) { sb.append(' '); - sb.append("QuoteMode=<").append(quoteMode).append('>'); + sb.append("QuoteMode=<").append(quoteMode).append('>'); } if (isCommentMarkerSet()) { sb.append(' '); diff --git a/src/test/java/org/apache/commons/csv/CSVFormatTest.java b/src/test/java/org/apache/commons/csv/CSVFormatTest.java index 0147867..c7f9885 100644 --- a/src/test/java/org/apache/commons/csv/CSVFormatTest.java +++ b/src/test/java/org/apache/commons/csv/CSVFormatTest.java @@ -69,7 +69,7 @@ public class CSVFormatTest { fail("Objects must not compare equal for " + name + "(" + type + ")"); } if (left.hashCode() == right.hashCode()) { - fail("Hash code should not be equal for " + name + "(" + type + ")"); + fail("Hash code should not be equal for " + name + "(" + type + ")"); } } @@ -196,7 +196,7 @@ public class CSVFormatTest { } } } - } + } } @Test @@ -1174,5 +1174,5 @@ public class CSVFormatTest { final CSVFormat formatWithRecordSeparator = CSVFormat.DEFAULT.withSystemRecordSeparator(); assertEquals(System.getProperty("line.separator"), formatWithRecordSeparator.getRecordSeparator()); } - + }