upgraded to lates s-c-function and s-c-build

cleaned javadoc errors in some modules
This commit is contained in:
Oleg Zhurakousky
2020-02-12 19:07:27 +01:00
parent f742dca2a7
commit 4dff694beb
8 changed files with 7 additions and 77 deletions

View File

@@ -315,7 +315,7 @@ public class FunctionConfiguration {
@Override
public Object apply(Object input) {
if (this.outputMessageEnricher == null) {// to avoid breaking change
if (this.outputMessageEnricher == null) { // to avoid breaking change
return this.function.apply(input);
}
return this.function.apply(input, this.outputMessageEnricher);
@@ -323,7 +323,7 @@ public class FunctionConfiguration {
@Override
public Object get() {
if (this.outputMessageEnricher == null) {// to avoid breaking change
if (this.outputMessageEnricher == null) { // to avoid breaking change
return this.function.get();
}
return this.function.get(this.outputMessageEnricher);