Skip to content

Commit

Permalink
Add workaround for kotlin.reflect.KFunction
Browse files Browse the repository at this point in the history
  • Loading branch information
lburgazzoli committed Apr 9, 2020
1 parent e2fd08c commit 19878fa
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ void generateKParameterClass(BuildProducer<GeneratedClassBuildItem> generatedCla
ClassCreator.builder()
.className("kotlin.reflect.KCallable")
.classOutput(new GeneratedClassGizmoAdaptor(generatedClass, false))
.setFinal(true)
.setFinal(false)
.superClass(Object.class)
.build()
.close();
Expand All @@ -60,8 +60,8 @@ void generateKParameterClass(BuildProducer<GeneratedClassBuildItem> generatedCla
ClassCreator.builder()
.className("kotlin.reflect.KFunction")
.classOutput(new GeneratedClassGizmoAdaptor(generatedClass, false))
.setFinal(true)
.superClass(Object.class)
.setFinal(false)
.superClass("kotlin.reflect.KCallable")
.build()
.close();
}
Expand Down

0 comments on commit 19878fa

Please sign in to comment.