Formatting changes only

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@492352 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stephen Colebourne 2007-01-03 23:44:56 +00:00
parent a1cf642b8d
commit 4c7e393d46
1 changed files with 3 additions and 3 deletions

View File

@ -1034,7 +1034,7 @@ public static boolean contains(String str, String searchStr) {
return str.indexOf(searchStr) >= 0;
}
/**
/**
* <p>Checks if String contains a search String irrespective of case,
* handling <code>null</code>. This method uses
* {@link #contains(String, String)}.</p>
@ -1052,8 +1052,8 @@ public static boolean contains(String str, String searchStr) {
* StringUtils.contains("abc", "Z") = false
* </pre>
*
* @param str the String to check, may be null
* @param searchStr the String to find, may be null
* @param str the String to check, may be null
* @param searchStr the String to find, may be null
* @return true if the String contains the search String irrespective of
* case or false if not or <code>null</code> string input
*/