We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75e7cbb commit ef9d323Copy full SHA for ef9d323
1 file changed
com/asrez/utils/MyString.java
@@ -168,7 +168,6 @@ public int lastIndexOf(String str, int fromIndex) {
168
return -1;
169
}
170
171
-
172
public boolean equalsIgnoreCase(MyString other) {
173
if(this.length != other.length)
174
return false;
@@ -291,7 +290,6 @@ public MyString trim() {
291
290
return result;
292
293
294
295
public static MyString valueOf(boolean b) {
296
if(b)
297
return new MyString("true");
@@ -309,7 +307,6 @@ public String toString() {
309
307
return new String(array);
310
308
311
312
313
public boolean equals(Object o) {
314
MyString other;
315
if(!(o instanceof MyString))
0 commit comments