Hi guys, I’m facing an error using guice `@Assiste...
# announcements
a
Hi guys, I’m facing an error using guice
@Assisted
annotation. I have a function similar to this
fun createPublishHysCmd(@Assisted("message") message: TBase)
When I see the compiled version, it decompiles to:
public abstract fun createPublishHysCmd(@com.google.inject.assistedinject.Assisted message: org.apache.thrift.TBase
Without the value of the annotation. If I write a similar function in java:
PublishMessageHysCmd createPublishHysCmd(@Assisted("message") TBase message)
I can see it decompiled to:
PublishMessageHysCmd createPublishHysCmd(@Assisted("message") TBase var1)
Does anyone know how to fix this?