From 4c7e393d468102571fc4a220a3562402d5bb41a6 Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Wed, 3 Jan 2007 23:44:56 +0000 Subject: [PATCH] Formatting changes only git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@492352 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/lang/StringUtils.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/java/org/apache/commons/lang/StringUtils.java b/src/java/org/apache/commons/lang/StringUtils.java index fc2b11d17..17ef65946 100644 --- a/src/java/org/apache/commons/lang/StringUtils.java +++ b/src/java/org/apache/commons/lang/StringUtils.java @@ -1034,7 +1034,7 @@ public static boolean contains(String str, String searchStr) { return str.indexOf(searchStr) >= 0; } - /** + /** *

Checks if String contains a search String irrespective of case, * handling null. This method uses * {@link #contains(String, String)}.

@@ -1052,8 +1052,8 @@ public static boolean contains(String str, String searchStr) { * StringUtils.contains("abc", "Z") = false * * - * @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 null string input */