You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sorry for the additional comment, but I just noticed that a lot of methods are deprecated in the feel engine. It seems that instead the FeelEngineApi should be used. Please correct this in the documentation.
@nils-christian you're right. The developer guide is outdated. 🙈
For Java, you should use:
FeelEngineApi feelEngine = FeelEngineBuilder.create().build();
// or especially for Java code:
FeelEngineApi feelEngine = FeelEngineBuilder.forJava().build();
Hi,
I noticed the usage of a deprecated Java API in the documentation.
Which documentation is missing/incorrect?
In the bootstrapping documentation you show how to initialize the engine.
The Builder class is deprecated. Instead something like the following has to be used
or
The second code is a very weird notation for a Java developer though.
Link to the documentation:
Best regards
Nils
The text was updated successfully, but these errors were encountered: