Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'framework/bundles/org.eclipse.ecf.identity/src')
-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