MCPcopy Create free account
hub / github.com/Lotus6/AutoRepeater / diff_main

Method diff_main

src/burp/Utils/diff_match_patch.java:130–132  ·  view source on GitHub ↗

Find the differences between two texts. Run a faster, slightly less optimal diff. This method allows the 'checklines' of diff_main() to be optional. Most of the time checklines is wanted, so default to true. @param text1 Old string to be diffed. @param text2 New string to be diffed. @return Linked

(String text1, String text2)

Source from the content-addressed store, hash-verified

128 * @return Linked List of Diff objects.
129 */
130 public LinkedList<Diff> diff_main(String text1, String text2) {
131 return diff_main(text1, text2, true);
132 }
133
134 /**
135 * Find the differences between two texts.

Callers 7

diff_computeMethod · 0.95
diff_lineModeMethod · 0.95
diff_bisectSplitMethod · 0.95
patch_makeMethod · 0.95
patch_applyMethod · 0.95
diffTextMethod · 0.95
diffLinesMethod · 0.95

Calls 6

diff_commonPrefixMethod · 0.95
diff_commonSuffixMethod · 0.95
diff_computeMethod · 0.95
diff_cleanupMergeMethod · 0.95
equalsMethod · 0.80
addMethod · 0.45

Tested by

no test coverage detected