Describe the bug
giveMeKotlinBuilder로 빌더를 생성 했음에도 thenApply, acceptIf로 builder.set() 사용시 deprecated 경고가 발생합니다.
제 생각엔 아래처럼 변경되어야 할 것으로 보입니다.
감사합니다!
as-is
override fun thenApply(biConsumer: BiConsumer<T, ArbitraryBuilder<T>>): KotlinTypeDefaultArbitraryBuilder<T> =
this.apply { delegate.thenApply(biConsumer) }
to-be
override fun thenApply(biConsumer: BiConsumer<T, KotlinTypeDefaultArbitraryBuilder<T>>): KotlinTypeDefaultArbitraryBuilder<T> =
this.apply { delegate.thenApply(biConsumer) }
Your environment
- fixtureMonkey 1.1.6
- kotlin 2.0.0
Steps to reproduce
Expected behaviour
deprecated 경고가 발생하지 않습니다.
Actual behaviour
deprecated 경고가 발생합니다.