From 28ef78d3d74ed736fac9b7dc1da9831e6d98634d Mon Sep 17 00:00:00 2001 From: Andrzej Spiess Date: Fri, 18 Oct 2019 08:30:01 +0200 Subject: [PATCH] Removing DeepDiff prefix in preprocess function invocation in WagnerFischer algorithm --- Sources/Shared/Algorithms/WagnerFischer.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Shared/Algorithms/WagnerFischer.swift b/Sources/Shared/Algorithms/WagnerFischer.swift index 75a492b..924a548 100755 --- a/Sources/Shared/Algorithms/WagnerFischer.swift +++ b/Sources/Shared/Algorithms/WagnerFischer.swift @@ -22,7 +22,7 @@ public final class WagnerFischer { previousRow.seed(with: new) let currentRow = Row() - if let changes = DeepDiff.preprocess(old: old, new: new) { + if let changes = preprocess(old: old, new: new) { return changes }