GH-1266 Improve and clean up SimpleFunctionRegistry

Resolves #1266
This commit is contained in:
Oleg Zhurakousky
2025-04-16 19:50:26 +02:00
parent d20aa3d0bd
commit f494962000
4 changed files with 28 additions and 58 deletions

View File

@@ -31,14 +31,6 @@ public interface FunctionInvocationHelper<I> {
return true;
}
/**
* @deprecated Use {@link #isRetainOutputAsMessage(I)}
*/
@Deprecated
default boolean isRetainOuputAsMessage(I input) {
return isRetainOutputAsMessage(input);
};
default I preProcessInput(I input, Object inputConverter) {
return input;
}