Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsuen2008-06-05 21:32:12 +0000
committerrsuen2008-06-05 21:32:12 +0000
commit261a766e22e58c31f76412ce49bad5dad771581a (patch)
treebf56a4f8b5b2ed9a1eb20971a7fc77a95fe56430
parent02456c7a2a72bd37155438ace9e8ba28d6c2e003 (diff)
downloadorg.eclipse.ecf-261a766e22e58c31f76412ce49bad5dad771581a.tar.gz
org.eclipse.ecf-261a766e22e58c31f76412ce49bad5dad771581a.tar.xz
org.eclipse.ecf-261a766e22e58c31f76412ce49bad5dad771581a.zip
Add @since 2.1.v20080605-1832
-rw-r--r--framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/StringUtils.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/StringUtils.java b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/StringUtils.java
index 01c4bf6a3..dc7c76998 100644
--- a/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/StringUtils.java
+++ b/framework/bundles/org.eclipse.ecf.identity/src/org/eclipse/ecf/core/util/StringUtils.java
@@ -245,6 +245,7 @@ public final class StringUtils {
* then the result will be the entire input string.
*
* @see StringUtils#replaceAll(String, String, String) but case insensitive
+ * @since 2.1
*/
public static String replaceAllIgnoreCase(String string, String target, String replace) {
final int index = string.toLowerCase().indexOf(target.toLowerCase());

Back to the top