Skip to content

Commit

Permalink
remove unnecessary @nowarn
Browse files Browse the repository at this point in the history
  • Loading branch information
fsvehla committed Oct 21, 2024
1 parent 5c3ef15 commit 738c3df
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ package object golden {
else DiffResult.Different(x, y)
}

@nowarn implicit private lazy val diff: Diff[GoldenSample] = (x: GoldenSample, y: GoldenSample) =>
implicit private lazy val diff: Diff[GoldenSample] = (x: GoldenSample, y: GoldenSample) =>
Diff[Json].diff(x.samples, y.samples)

def goldenTest[A: Tag: JsonEncoder](
Expand Down

0 comments on commit 738c3df

Please sign in to comment.