Skip to content

Commit

Permalink
Fix performance issues in jackson-module-scala, weePickle, and json4s…
Browse files Browse the repository at this point in the history
  • Loading branch information
plokhotnyuk committed Mar 13, 2024
1 parent 2215c20 commit 1a00aca
Show file tree
Hide file tree
Showing 111 changed files with 75 additions and 113 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ class ADTReading extends ADTBenchmark {
@Benchmark
def weePickle(): ADTBase = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[ADTBase])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ class AnyValsReading extends AnyValsBenchmark {
@Benchmark
def weePickle(): AnyVals = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[AnyVals])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ class ArrayBufferOfBooleansReading extends ArrayBufferOfBooleansBenchmark {

@Benchmark
def weePickle(): mutable.ArrayBuffer[Boolean] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[mutable.ArrayBuffer[Boolean]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class ArrayOfBigDecimalsReading extends ArrayOfBigDecimalsBenchmark {

@Benchmark
def weePickle(): Array[BigDecimal] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[BigDecimal]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class ArrayOfBigIntsReading extends ArrayOfBigIntsBenchmark {

@Benchmark
def weePickle(): Array[BigInt] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[BigInt]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class ArrayOfBooleansReading extends ArrayOfBooleansBenchmark {

@Benchmark
def weePickle(): Array[Boolean] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Boolean]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class ArrayOfBytesReading extends ArrayOfBytesBenchmark {

@Benchmark
def weePickle(): Array[Byte] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Byte]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ class ArrayOfCharsReading extends ArrayOfCharsBenchmark {

@Benchmark
def weePickle(): Array[Char] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Char]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class ArrayOfDoublesReading extends ArrayOfDoublesBenchmark {

@Benchmark
def weePickle(): Array[Double] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Double]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ class ArrayOfDurationsReading extends ArrayOfDurationsBenchmark {
@Benchmark
def weePickle(): Array[Duration] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Duration]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ class ArrayOfEnumADTsReading extends ArrayOfEnumADTsBenchmark {
@Benchmark
def weePickle(): Array[SuitADT] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[SuitADT]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ class ArrayOfEnumsReading extends ArrayOfEnumsBenchmark {
@Benchmark
def weePickle(): Array[SuitEnum] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[SuitEnum]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ class ArrayOfFloatsReading extends ArrayOfFloatsBenchmark {

@Benchmark
def weePickle(): Array[Float] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Float]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class ArrayOfInstantsReading extends ArrayOfInstantsBenchmark {

@Benchmark
def weePickle(): Array[Instant] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Instant]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class ArrayOfIntsReading extends ArrayOfIntsBenchmark {

@Benchmark
def weePickle(): Array[Int] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Int]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ class ArrayOfJavaEnumsReading extends ArrayOfJavaEnumsBenchmark {
@Benchmark
def weePickle(): Array[Suit] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Suit]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class ArrayOfLocalDateTimesReading extends ArrayOfLocalDateTimesBenchmark {

@Benchmark
def weePickle(): Array[LocalDateTime] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[LocalDateTime]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class ArrayOfLocalDatesReading extends ArrayOfLocalDatesBenchmark {

@Benchmark
def weePickle(): Array[LocalDate] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[LocalDate]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class ArrayOfLocalTimesReading extends ArrayOfLocalTimesBenchmark {

@Benchmark
def weePickle(): Array[LocalTime] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[LocalTime]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class ArrayOfLongsReading extends ArrayOfLongsBenchmark {

@Benchmark
def weePickle(): Array[Long] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Long]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ class ArrayOfMonthDaysReading extends ArrayOfMonthDaysBenchmark {
@Benchmark
def weePickle(): Array[MonthDay] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[MonthDay]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ class ArrayOfOffsetDateTimesReading extends ArrayOfOffsetDateTimesBenchmark {

@Benchmark
def weePickle(): Array[OffsetDateTime] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[OffsetDateTime]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,6 @@ class ArrayOfOffsetTimesReading extends ArrayOfOffsetTimesBenchmark {
@Benchmark
def weePickle(): Array[OffsetTime] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[OffsetTime]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ class ArrayOfPeriodsReading extends ArrayOfPeriodsBenchmark {
@Benchmark
def weePickle(): Array[Period] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Period]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class ArrayOfShortsReading extends ArrayOfShortsBenchmark {

@Benchmark
def weePickle(): Array[Short] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Short]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ class ArrayOfUUIDsReading extends ArrayOfUUIDsBenchmark {

@Benchmark
def weePickle(): Array[UUID] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[UUID]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ class ArrayOfYearMonthsReading extends ArrayOfYearMonthsBenchmark {
@Benchmark
def weePickle(): Array[YearMonth] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[YearMonth]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ class ArrayOfYearsReading extends ArrayOfYearsBenchmark {
@Benchmark
def weePickle(): Array[Year] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Year]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ class ArrayOfZoneIdsReading extends ArrayOfZoneIdsBenchmark {
@Benchmark
def weePickle(): Array[ZoneId] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[ZoneId]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ class ArrayOfZoneOffsetsReading extends ArrayOfZoneOffsetsBenchmark {
@Benchmark
def weePickle(): Array[ZoneOffset] = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[ZoneOffset]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class ArrayOfZonedDateTimesReading extends ArrayOfZonedDateTimesBenchmark {

@Benchmark
def weePickle(): Array[ZonedDateTime] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[ZonedDateTime]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ class ArraySeqOfBooleansReading extends ArraySeqOfBooleansBenchmark {

@Benchmark
def weePickle(): ArraySeq[Boolean] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[ArraySeq[Boolean]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class Base64Reading extends Base64Benchmark {

@Benchmark
def weePickle(): Array[Byte] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Array[Byte]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ class BigDecimalReading extends BigDecimalBenchmark {

@Benchmark
def weePickle(): BigDecimal = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[BigDecimal])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class BigIntReading extends BigIntBenchmark {

@Benchmark
def weePickle(): BigInt = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[BigInt])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ class ExtractFieldsReading extends ExtractFieldsBenchmark {
@Benchmark
def weePickle(): ExtractFields = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[ExtractFields])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,6 @@ class GeoJSONReading extends GeoJSONBenchmark {
@Benchmark
def weePickle(): GeoJSON = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[GeoJSON])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,6 @@ class GitHubActionsAPIReading extends GitHubActionsAPIBenchmark {
@Benchmark
def weePickle(): GitHubActionsAPI.Response = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[GitHubActionsAPI.Response])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ class GoogleMapsAPIReading extends GoogleMapsAPIBenchmark {
@Benchmark
def weePickle(): DistanceMatrix = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[DistanceMatrix])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class IntReading extends IntBenchmark {

@Benchmark
def weePickle(): Int = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Int])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class ListOfBooleansReading extends ListOfBooleansBenchmark {

@Benchmark
def weePickle(): List[Boolean] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[List[Boolean]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class MapOfIntsToBooleansReading extends MapOfIntsToBooleansBenchmark {
*/
@Benchmark
def weePickle(): Map[Int, Boolean] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[Map[Int, Boolean]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,6 @@ class MissingRequiredFieldsReading extends MissingRequiredFieldsBenchmark {
@Benchmark
def weePickle(): String = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala
import com.rallyhealth.weepickle.v1.core.TransformException

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ class MutableMapOfIntsToBooleansReading extends MutableMapOfIntsToBooleansBenchm

@Benchmark
def weePickle(): mutable.Map[Int, Boolean] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[mutable.Map[Int, Boolean]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ class MutableSetOfIntsReading extends MutableSetOfIntsBenchmark {

@Benchmark
def weePickle(): mutable.Set[Int] = {
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[mutable.Set[Int]])
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,6 @@ class NestedStructsReading extends NestedStructsBenchmark {
@Benchmark
def weePickle(): NestedStructs = {
import com.github.plokhotnyuk.jsoniter_scala.benchmark.WeePickleFromTos._
import com.rallyhealth.weejson.v1.jackson.FromJson
import com.rallyhealth.weepickle.v1.WeePickle.ToScala

FromJson(jsonBytes).transform(ToScala[NestedStructs])
Expand Down
Loading

0 comments on commit 1a00aca

Please sign in to comment.