Skip to content
This repository has been archived by the owner on Dec 5, 2022. It is now read-only.

Commit

Permalink
Merge pull request #49 from ninjazoete/bug/deepdiff-referenced-from-i…
Browse files Browse the repository at this point in the history
…nside-its-own-module

Removing DeepDiff prefix in preprocess function invocation in WagnerF…
  • Loading branch information
onmyway133 authored Oct 18, 2019
2 parents 74453cb + 28ef78d commit 2508dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sources/Shared/Algorithms/WagnerFischer.swift
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public final class WagnerFischer<T: DiffAware> {
previousRow.seed(with: new)
let currentRow = Row<T>()

if let changes = DeepDiff.preprocess(old: old, new: new) {
if let changes = preprocess(old: old, new: new) {
return changes
}

Expand Down

0 comments on commit 2508dd8

Please sign in to comment.