We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 786b8b0 commit ef6805fCopy full SHA for ef6805f
lib/src/diff.dart
@@ -290,11 +290,11 @@ List<patchResult> strip_patch(List<patchResult> patch) {
290
patchResult chunk = patch[i];
291
patchResult patchResultNewPatch = new patchResult();
292
patchResultNewPatch.file1 = new patchDescriptionThing()
293
- ..Offset = chunk.file1.Offset
294
- ..Length = chunk.file1.Length;
+ ..Offset = chunk.file1.Offset
+ ..Length = chunk.file1.Length;
295
296
- patchResultNewPatch.file2 = new patchDescriptionThing()
297
- ..Chunk = chunk.file2.Chunk;
+ patchResultNewPatch.file2 = new patchDescriptionThing()..Chunk =
+ chunk.file2.Chunk;
298
299
newpatch.add(patchResultNewPatch);
300
}
0 commit comments