Re: I wish to contribute to Apache Commons Collections

2015-10-05 Thread Gary Gregory
Gunith, I would start by going through the JIRA database and look for opportunities to address tickets: https://issues.apache.org/jira/browse/COLLECTIONS/?selectedTab=com.atlassian.jira.jira-projects-plugin:summary-panel Make sure you read up on volunteering http://commons.apache.org/volunteering

Re: [LANG] Adding null safe compare methods in StringUtils

2015-10-05 Thread Loic Guibert
But i've a problem in this unit test : org.apache.commons.lang3.StringUtilsTest.testStringUtilsCharSequenceContract() It said : The method public static int org.apache.commons.lang3.StringUtils.compare(String,String,boolean) appears to be immutable in spirit and therefore must not accept a Stri

[LANG] Adding null safe compare methods in StringUtils

2015-10-05 Thread Loic Guibert
Hello, I've implemented null safe methods to compare 2 Strings in StringUtils : - public static int compare(final String str1, final String str2); - public static int compare(final String str1, final String str2, final boolean nullIsLess); - public static int compareIgnoreCase(final String st