getMatchingBlocks static method
Implementation
static List<MatchingBlock> getMatchingBlocks(String s1, String s2) {
return _getMatchingBlocks(s1.length, s2.length, getEditOps(s1, s2));
}
static List<MatchingBlock> getMatchingBlocks(String s1, String s2) {
return _getMatchingBlocks(s1.length, s2.length, getEditOps(s1, s2));
}