Return-Path: X-Original-To: apmail-commons-issues-archive@minotaur.apache.org Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 3AB8017E56 for ; Thu, 16 Oct 2014 22:39:34 +0000 (UTC) Received: (qmail 84607 invoked by uid 500); 16 Oct 2014 22:39:33 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 84514 invoked by uid 500); 16 Oct 2014 22:39:33 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 84501 invoked by uid 99); 16 Oct 2014 22:39:33 -0000 Received: from arcas.apache.org (HELO arcas.apache.org) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Oct 2014 22:39:33 +0000 Date: Thu, 16 Oct 2014 22:39:33 +0000 (UTC) From: "James Sawle (JIRA)" To: issues@commons.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Issue Comment Deleted] (LANG-1050) Change nullToEmpty methods to generics MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/LANG-1050?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] James Sawle updated LANG-1050: ------------------------------ Comment: was deleted (was: Have created a pull request without the caching, this can easily be added if so desired. https://github.com/apache/commons-lang/pull/31) > Change nullToEmpty methods to generics > -------------------------------------- > > Key: LANG-1050 > URL: https://issues.apache.org/jira/browse/LANG-1050 > Project: Commons Lang > Issue Type: Improvement > Components: lang.* > Reporter: James Sawle > > Currently there are multiple Object based methods which could be replaced by a single generic method. > - public static Long[] nullToEmpty(final Long[] array) > - public static Integer[] nullToEmpty(final Integer[] array) > - public static Short[] nullToEmpty(final Short[] array) > - public static Character[] nullToEmpty(final Character[] array) > - public static Byte[] nullToEmpty(final Byte[] array) > - public static Double[] nullToEmpty(final Double[] array) > - public static Float[] nullToEmpty(final Float[] array) > - public static Boolean[] nullToEmpty(final Boolean[] array) > Recommendation, replace all of these with a single method that would also allow a defensive programming style when not using wrapped primitives. > - public static T[] nullToEmpty(final T[] array) -- This message was sent by Atlassian JIRA (v6.3.4#6332)