getMatchingBlocks static method

List<MatchingBlock> getMatchingBlocks(
  1. String s1,
  2. String s2
)

Implementation

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