(int thisOffset, String match, int matchOffset,
int length)
| 632 | } |
| 633 | |
| 634 | public boolean regionMatches(int thisOffset, String match, int matchOffset, |
| 635 | int length) |
| 636 | { |
| 637 | return regionMatches(false, thisOffset, match, matchOffset, length); |
| 638 | } |
| 639 | |
| 640 | public boolean regionMatches(boolean ignoreCase, int thisOffset, |
| 641 | String match, int matchOffset, int length) |
nothing calls this directly
no test coverage detected