We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
giveMeKotlinBuilder로 빌더를 생성 했음에도 thenApply, acceptIf로 builder.set() 사용시 deprecated 경고가 발생합니다.
giveMeKotlinBuilder
thenApply
acceptIf
builder.set()
제 생각엔 아래처럼 변경되어야 할 것으로 보입니다. 감사합니다! 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) }
deprecated 경고가 발생하지 않습니다.
deprecated 경고가 발생합니다.
The text was updated successfully, but these errors were encountered:
@jurogrammer 님 안녕하세요.
breaking change가 발생할 수 있어 다음 minor 버전에서 해결하고자 합니다.
해결되면 공유드리겠습니다. 감사합니다.
Sorry, something went wrong.
No branches or pull requests
Describe the bug
giveMeKotlinBuilder
로 빌더를 생성 했음에도thenApply
,acceptIf
로builder.set()
사용시 deprecated 경고가 발생합니다.제 생각엔 아래처럼 변경되어야 할 것으로 보입니다.
감사합니다!
as-is
to-be
Your environment
Steps to reproduce
Expected behaviour
deprecated 경고가 발생하지 않습니다.
Actual behaviour
deprecated 경고가 발생합니다.
The text was updated successfully, but these errors were encountered: