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 5437d1d commit 731e692Copy full SHA for 731e692
core/src/main/scala/diffson/jsonpatch/package.scala
@@ -23,10 +23,10 @@ package object jsonpatch {
23
object lcsdiff {
24
object remembering {
25
implicit def JsonDiffDiff[Json: Jsony: Lcs]: Diff[Json, JsonPatch[Json]] =
26
- new JsonDiff[Json](true, true)
+ new JsonDiff[Json](true, true)(implicitly, implicitly[Lcs[Json]].savedHashes)
27
}
28
29
- new JsonDiff[Json](true, false)
+ new JsonDiff[Json](true, false)(implicitly, implicitly[Lcs[Json]].savedHashes)
30
31
32
object simplediff {
0 commit comments