cashapp / backfila

Service that manages backfill state, calling into other services to do batched work
https://cashapp.github.io/backfila/
Apache License 2.0
31 stars 49 forks source link

Default null not required for nullable parameters #328

Closed shellderp closed 1 year ago

shellderp commented 1 year ago

Previously, you had to write

  data class Parameters(
    val x: String? = null,
  )

Now you can write

  data class Parameters(
    val x: String?,
  )