Róbert Papp
Róbert Papp
Thanks for forwarding the issue internally!
Same applies to `@ArgumentsSource(MyArgumentsProvider::class)` ```kotlin class MyArgumentsProvider : ArgumentsProvider { override fun provideArguments(context: ExtensionContext) = Stream.of( Arguments.of(Result.success("something")), ) } ```
Yes those. The inline part is implied, because: > e: [VALUE_CLASS_WITHOUT_JVM_INLINE_ANNOTATION] Value classes without '@JvmInline' annotation are not yet supported. But also, the generics might be important here. Didn't try...
@IgnatBeresnev why did you flag this as upstream?
Same with `getInputs()`.
Workaround (kotlin): ```kotlin object : RequestWrapper(ImmutableRequest.Builder()....build()) { // TODO remove RequestWrapper once https://github.com/wiremock/wiremock/issues/3260 is released. override fun getCookies(): Map = emptyMap() } ```
Could also be used to give VC access for settings.gradle: ``` val builder = gradle.serviceOf().newInstance(DefaultVersionCatalogBuilder::class.java) TomlCatalogFileParser.parse(file("gradle/libs.versions.toml").toPath(), builder, ...) ```
Looks like it, except the "consider" part ☺️.
Can you please clarify @AminaRahim23 ? Or grab the code from sample and show what you mean?
Here's the hierarchy: Java public (in library): ```java package com.bumptech.glide.module; public abstract class AppGlideModule extends LibraryGlideModule implements AppliesOptions { ``` Java internal (in library): ```java package com.bumptech.glide; /*default*/ abstract class...