Skip to content

Commit

Permalink
Really fix compilation errors this time
Browse files Browse the repository at this point in the history
Signed-off-by: solonovamax <[email protected]>
  • Loading branch information
solonovamax committed Oct 19, 2023
1 parent 9e6bef9 commit 159d345
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,6 @@ class StringMeasureBenchmark {
val jaroWinkler = JaroWinkler()
val nGram = NGram()
val qGram = QGram()
val ratcliffObershelp = RatcliffObershelp()
val sift4 = Sift4()

@Benchmark
Expand Down Expand Up @@ -80,7 +79,7 @@ class StringMeasureBenchmark {

@Benchmark
fun testRatcliffObershelp(blackhole: Blackhole) {
blackhole.consume(ratcliffObershelp.similarity(s1, s2))
blackhole.consume(RatcliffObershelp.similarity(s1, s2))
}

@Benchmark
Expand Down

0 comments on commit 159d345

Please sign in to comment.