GH-675 Made KotlinFunctionWrapper public
This commit is contained in:
@@ -102,7 +102,7 @@ public class KotlinLambdaToFunctionAutoConfiguration {
|
|||||||
|
|
||||||
|
|
||||||
@SuppressWarnings({ "unchecked", "rawtypes" })
|
@SuppressWarnings({ "unchecked", "rawtypes" })
|
||||||
private static final class KotlinFunctionWrapper implements Function<Object, Object>, Supplier<Object>, Consumer<Object[]>,
|
public static final class KotlinFunctionWrapper implements Function<Object, Object>, Supplier<Object>, Consumer<Object[]>,
|
||||||
Function0<Object>, Function1<Object, Object>, Function2<Object, Object, Object>,
|
Function0<Object>, Function1<Object, Object>, Function2<Object, Object, Object>,
|
||||||
Function3<Object, Object, Object, Object>, Function4<Object, Object, Object, Object, Object>,
|
Function3<Object, Object, Object, Object>, Function4<Object, Object, Object, Object, Object>,
|
||||||
FactoryBean<FunctionRegistration>,
|
FactoryBean<FunctionRegistration>,
|
||||||
@@ -115,7 +115,7 @@ public class KotlinLambdaToFunctionAutoConfiguration {
|
|||||||
|
|
||||||
private ConfigurableListableBeanFactory beanFactory;
|
private ConfigurableListableBeanFactory beanFactory;
|
||||||
|
|
||||||
private KotlinFunctionWrapper(Object kotlinLambdaTarget) {
|
public KotlinFunctionWrapper(Object kotlinLambdaTarget) {
|
||||||
this.kotlinLambdaTarget = kotlinLambdaTarget;
|
this.kotlinLambdaTarget = kotlinLambdaTarget;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user