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 D5F53200B86 for ; Sun, 18 Sep 2016 18:02:00 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id D4671160A8C; Sun, 18 Sep 2016 16:02:00 +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 1BA98160AC3 for ; Sun, 18 Sep 2016 18:01:59 +0200 (CEST) Received: (qmail 7654 invoked by uid 500); 18 Sep 2016 16:01:59 -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 7625 invoked by uid 99); 18 Sep 2016 16:01:59 -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, 18 Sep 2016 16:01:59 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C5813DFBA0; Sun, 18 Sep 2016 16:01:58 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: britter@apache.org To: commits@commons.apache.org Date: Sun, 18 Sep 2016 16:02:00 -0000 Message-Id: <69dbb537b64b461885d6fb932860196e@git.apache.org> In-Reply-To: <842ee9c6728f4e219a7fe196971e625c@git.apache.org> References: <842ee9c6728f4e219a7fe196971e625c@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [3/3] [lang] Add LANG-1261 to changes.xml archived-at: Sun, 18 Sep 2016 16:02:01 -0000 Add LANG-1261 to changes.xml Project: http://git-wip-us.apache.org/repos/asf/commons-lang/repo Commit: http://git-wip-us.apache.org/repos/asf/commons-lang/commit/42f2058c Tree: http://git-wip-us.apache.org/repos/asf/commons-lang/tree/42f2058c Diff: http://git-wip-us.apache.org/repos/asf/commons-lang/diff/42f2058c Branch: refs/heads/master Commit: 42f2058c83f256d8654b349d5249d6f59920f88b Parents: 72bbbbc 556d0fe Author: Benedikt Ritter Authored: Sun Sep 18 18:01:43 2016 +0200 Committer: Benedikt Ritter Committed: Sun Sep 18 18:01:43 2016 +0200 ---------------------------------------------------------------------- src/changes/changes.xml | 1 + .../java/org/apache/commons/lang3/ArrayUtils.java | 2 +- .../org/apache/commons/lang3/ArrayUtilsTest.java | 18 +++++++++++++++++- 3 files changed, 19 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/commons-lang/blob/42f2058c/src/changes/changes.xml ---------------------------------------------------------------------- diff --cc src/changes/changes.xml index 4f06362,5bd9589..d3a52fe --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@@ -45,10 -45,8 +45,11 @@@ The type attribute can be add, - + + ArrayUtils.contains returns false for instances of subtypes + Prepare Java 9 detection + Rename NumberUtils.isNumber, isCreatable to better reflect createNumber. Also, accommodated for "+" symbol as prefix in isCreatable and isNumber. + CompareToBuilder.append(Object, Object, Comparator) method is too big to be inlined Remove unnecessary synchronization from registry lookup in EqualsBuilder and HashCodeBuilder Extend RandomStringUtils with methods that generate strings between a min and max length Handle "void" in ClassUtils.getClass() http://git-wip-us.apache.org/repos/asf/commons-lang/blob/42f2058c/src/main/java/org/apache/commons/lang3/ArrayUtils.java ----------------------------------------------------------------------