Skip to content

Commit 99628a5

Browse files
committed
Fix to not use diff_cleanupSemantic, bug report refer to https://code.google.com/p/google-diff-match-patch/issues/detail?id=67
1 parent f6d8e3a commit 99628a5

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

lib/workers/dmpWorker.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,6 @@ process.on('message', function(data) {
5757
function createPatch(lastDoc, currDoc) {
5858
var ms_start = (new Date()).getTime();
5959
var diff = dmp.diff_main(lastDoc, currDoc);
60-
dmp.diff_cleanupSemantic(diff);
6160
var patch = dmp.patch_make(lastDoc, diff);
6261
patch = dmp.patch_toText(patch);
6362
var ms_end = (new Date()).getTime();

0 commit comments

Comments
 (0)