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 BD4F4200BC6 for ; Sun, 20 Nov 2016 07:57:43 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id BBE44160AF1; Sun, 20 Nov 2016 06:57:43 +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 0E317160B07 for ; Sun, 20 Nov 2016 07:57:42 +0100 (CET) Received: (qmail 97698 invoked by uid 500); 20 Nov 2016 06:57: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 97428 invoked by uid 99); 20 Nov 2016 06:57: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; Sun, 20 Nov 2016 06:57:41 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id A1009E3910; Sun, 20 Nov 2016 06:57:40 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: kinow@apache.org To: commits@commons.apache.org Date: Sun, 20 Nov 2016 06:57:44 -0000 Message-Id: <8c6207afe50748f99d8d54913745f6e2@git.apache.org> In-Reply-To: <5a0631f724dd433e93106e87d46e361b@git.apache.org> References: <5a0631f724dd433e93106e87d46e361b@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [5/7] [text] salutations: Name constructor is now public for testing. archived-at: Sun, 20 Nov 2016 06:57:43 -0000 salutations: Name constructor is now public for testing. Project: http://git-wip-us.apache.org/repos/asf/commons-text/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-text/commit/cd92a0ea Tree: http://git-wip-us.apache.org/repos/asf/commons-text/tree/cd92a0ea Diff: http://git-wip-us.apache.org/repos/asf/commons-text/diff/cd92a0ea Branch: refs/heads/master Commit: cd92a0eacc7c0f37fe2e52ea94eb41c522012f06 Parents: f666403 Author: Tom MacKenzie Authored: Mon Jun 20 14:53:40 2016 -0500 Committer: Tom MacKenzie Committed: Mon Jun 20 14:53:40 2016 -0500 ---------------------------------------------------------------------- src/main/java/org/apache/commons/text/names/Name.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-text/blob/cd92a0ea/src/main/java/org/apache/commons/text/names/Name.java ---------------------------------------------------------------------- diff --git a/src/main/java/org/apache/commons/text/names/Name.java b/src/main/java/org/apache/commons/text/names/Name.java index ef3d36a..00850d1 100644 --- a/src/main/java/org/apache/commons/text/names/Name.java +++ b/src/main/java/org/apache/commons/text/names/Name.java @@ -33,7 +33,7 @@ public final class Name { private final String lastName; private final String suffix; - Name(String leadingInitial, String salutation, String firstName, String nickName, String middleName, String lastName, String suffix) { + public Name(String leadingInitial, String salutation, String firstName, String nickName, String middleName, String lastName, String suffix) { this.leadingInitial = leadingInitial; this.salutation = salutation; this.firstName = firstName;