ChinchuAjith commented on code in PR #6519:
URL:
https://github.com/apache/incubator-kie-drools/pull/6519#discussion_r2527298554
##########
kie-dmn/kie-dmn-feel/src/main/java/org/kie/dmn/feel/lang/ast/infixexecutors/DivExecutor.java:
##########
@@ -48,55 +36,12 @@ public static DivExecutor instance() {
@Override
public Object evaluate(Object left, Object right, EvaluationContext ctx) {
- return div(left, right, ctx);
+ DialectHandler handler = DialectHandlerFactory.getHandler(ctx);
+ return handler.executeDivision(left, right, ctx);
}
- @Override
+ @Override
Review Comment:
Done
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]