From commits-return-60748-archive-asf-public=cust-asf.ponee.io@commons.apache.org Tue Jan 9 18:31:52 2018 Return-Path: X-Original-To: archive-asf-public@eu.ponee.io Delivered-To: archive-asf-public@eu.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by mx-eu-01.ponee.io (Postfix) with ESMTP id E0BF0180718 for ; Tue, 9 Jan 2018 18:31:52 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 468F5160C2D; Tue, 9 Jan 2018 17:31:53 +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 8C8F1160C17 for ; Tue, 9 Jan 2018 18:31:52 +0100 (CET) Received: (qmail 46636 invoked by uid 500); 9 Jan 2018 17:31:51 -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 46627 invoked by uid 99); 9 Jan 2018 17:31:51 -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; Tue, 09 Jan 2018 17:31:51 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 8923CDFC32; Tue, 9 Jan 2018 17:31:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: ggregory@apache.org To: commits@commons.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: commons-csv git commit: Slightly better Javadoc. Date: Tue, 9 Jan 2018 17:31:51 +0000 (UTC) Repository: commons-csv Updated Branches: refs/heads/master f3f48be1d -> eede739d1 Slightly better Javadoc. Project: http://git-wip-us.apache.org/repos/asf/commons-csv/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-csv/commit/eede739d Tree: http://git-wip-us.apache.org/repos/asf/commons-csv/tree/eede739d Diff: http://git-wip-us.apache.org/repos/asf/commons-csv/diff/eede739d Branch: refs/heads/master Commit: eede739d18c69722ff39e8e42df6b68ae7627082 Parents: f3f48be Author: Gary Gregory Authored: Tue Jan 9 10:31:48 2018 -0700 Committer: Gary Gregory Committed: Tue Jan 9 10:31:48 2018 -0700 ---------------------------------------------------------------------- src/main/java/org/apache/commons/csv/QuoteMode.java | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-csv/blob/eede739d/src/main/java/org/apache/commons/csv/QuoteMode.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/csv/QuoteMode.java b/src/main/java/org/apache/commons/csv/QuoteMode.java index 216f775..272deb7 100644 --- a/src/main/java/org/apache/commons/csv/QuoteMode.java +++ b/src/main/java/org/apache/commons/csv/QuoteMode.java @@ -17,8 +17,7 @@ package org.apache.commons.csv; /** - * Defines quote behavior when printing. - * + * Defines quoting behavior when printing. */ public enum QuoteMode { @@ -33,8 +32,8 @@ public enum QuoteMode { ALL_NON_NULL, /** - * Quotes fields which contain special characters such as a delimiter, quotes character or any of the characters in - * line separator. + * Quotes fields which contain special characters such as a the field delimiter, quote character or any of the + * characters in the line separator string. */ MINIMAL, @@ -44,8 +43,8 @@ public enum QuoteMode { NON_NUMERIC, /** - * Never quotes fields. When the delimiter occurs in data, the printer prefixes it with the current escape - * character. If the escape character is not set, format validation throws an exception. + * Never quotes fields. When the delimiter occurs in data, the printer prefixes it with the escape character. If the + * escape character is not set, format validation throws an exception. */ NONE }