*** empty log message ***
[IRC.git] / Robust / src / ClassLibrary / String.java
index 084586232607ac8883bbf2b4da5b6916f96a09b9..52147045afce4e7c0cbcc7479784b9da30c5ed39 100644 (file)
@@ -177,6 +177,11 @@ public class String {
     return -1;
   }
 
+       public int indexOfIgnoreCase(String str, int fromIndex) {
+               if (fromIndex < 0) 
+                       fromIndex = 0;
+       }
+
   public int lastIndexOf(String str, int fromIndex) {
     int k=count-str.count;
     if (k>fromIndex)