Skip to content

Commit

Permalink
chore(dmn): update feel custom providers setters
Browse files Browse the repository at this point in the history
Related to CAM-11398, PR camunda#670
  • Loading branch information
koevskinikola authored Feb 20, 2020
1 parent e4ba44c commit 534befe
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -559,10 +559,19 @@ public List<FeelCustomFunctionProvider> getFeelCustomFunctionProviders() {
* Set a list of FEEL Custom Function Providers.
*
* @param feelCustomFunctionProviders a list of FEEL Custom Function Providers
* @return this
*/
public DefaultDmnEngineConfiguration setFeelCustomFunctionProviders(List<FeelCustomFunctionProvider> feelCustomFunctionProviders) {
public void setFeelCustomFunctionProviders(List<FeelCustomFunctionProvider> feelCustomFunctionProviders) {
this.feelCustomFunctionProviders = feelCustomFunctionProviders;
}

/**
* Set a list of FEEL Custom Function Providers.
*
* @param feelCustomFunctionProviders a list of FEEL Custom Function Providers
* @return this
*/
public DefaultDmnEngineConfiguration feelCustomFunctionProviders(List<FeelCustomFunctionProvider> feelCustomFunctionProviders) {
setFeelCustomFunctionProviders(feelCustomFunctionProviders);
return this;
}

Expand Down

0 comments on commit 534befe

Please sign in to comment.