Why doesn't the Java String source method regionMatches () call its overloaded implementation?

The two methods in

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)

Dec.23,2021

Test program:

regionMatches(): 633992574
regionMatches(false): 805662114

the first one is slightly faster than the second one.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-1b3d384-2c382.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-1b3d384-2c382.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?