String source code are as follows:
public boolean regionMatches(int toffset, String other, int ooffset,int len) {
return regionMatches(false,toffset, other, ooffset, len);
}
but it is still implemented separately in jdk8. Is there any other consideration?
(there are many similar repetitive implementations in string)