/[Apache-SVN]
ViewVC logotype

Revision 923527


Jump to revision: Previous Next
Author: ggregory
Date: Tue Mar 16 00:46:02 2010 UTC (14 years, 8 months ago)
Changed paths: 1
Log Message:
Change the APIs from char to int character input to match underlying JRE API called. There is no need to narrow the input type argument to the JRE, in fact this causes us to loose support for Unicode supplementary characters. The APIs changed are:
- indexOf(String, char) -> indexOf(String, int)
- indexOf(String, char, int) -> indexOf(String, int, int)
- lastIndexOf(String, char) -> lastIndexOf(String, int)
- lastIndexOf(String, char, int) -> lastIndexOf(String, int, int)
- contains(String, char) -> contains(String, int) 

Changed paths

Path Details
Directorycommons/proper/lang/trunk/src/main/java/org/apache/commons/lang3/StringUtils.java modified , text changed

infrastructure at apache.org
ViewVC Help
Powered by ViewVC 1.1.26