mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
Merge branch 'master' of oss.readytalk.com:/var/local/git/avian
This commit is contained in:
commit
7d0e584c8b
@ -231,11 +231,25 @@ public final class String
|
||||
}
|
||||
|
||||
public boolean equals(Object o) {
|
||||
return this == o || (o instanceof String && compareTo((String) o) == 0);
|
||||
if (this == o) {
|
||||
return true;
|
||||
} else if (o instanceof String) {
|
||||
String s = (String) o;
|
||||
return s.length == length && compareTo(s) == 0;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean equalsIgnoreCase(String s) {
|
||||
return this == s || (s != null && compareToIgnoreCase(s) == 0);
|
||||
public boolean equalsIgnoreCase(String o) {
|
||||
if (this == o) {
|
||||
return true;
|
||||
} else if (o instanceof String) {
|
||||
String s = (String) o;
|
||||
return s.length == length && compareToIgnoreCase(s) == 0;
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
public int compareTo(String s) {
|
||||
|
Loading…
Reference in New Issue
Block a user