This is an automated email from the ASF dual-hosted git repository.

gitgabrio pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/incubator-kie-drools.git


The following commit(s) were added to refs/heads/main by this push:
     new 2e43cbc5cd kie-dmn-core: fix 'occured' -> 'occurred' typo in 
ERRORS_EVAL_DS_NODE message (#6664)
2e43cbc5cd is described below

commit 2e43cbc5cd19611f9b24b617ec7d1d8d34c6762f
Author: Sai Asish Y <[email protected]>
AuthorDate: Thu Apr 16 23:07:06 2026 -0700

    kie-dmn-core: fix 'occured' -> 'occurred' typo in ERRORS_EVAL_DS_NODE 
message (#6664)
    
    The ERRORS_EVAL_DS_NODE template in 
kie-dmn/kie-dmn-core/src/main/java/org/kie/dmn/core/util/Msg.java read 'Errors 
occured while evaluating Decision Service node %s'. User-visible in DMN 
evaluation error messages.
    
    Signed-off-by: SAY-5 <[email protected]>
    Co-authored-by: SAY-5 <[email protected]>
---
 kie-dmn/kie-dmn-core/src/main/java/org/kie/dmn/core/util/Msg.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kie-dmn/kie-dmn-core/src/main/java/org/kie/dmn/core/util/Msg.java 
b/kie-dmn/kie-dmn-core/src/main/java/org/kie/dmn/core/util/Msg.java
index cfbc6b0c5a..3bd280a878 100644
--- a/kie-dmn/kie-dmn-core/src/main/java/org/kie/dmn/core/util/Msg.java
+++ b/kie-dmn/kie-dmn-core/src/main/java/org/kie/dmn/core/util/Msg.java
@@ -98,7 +98,7 @@ public final class Msg {
     public static final Message2 DUPLICATED_RELATION_COLUMN                    
      = new Message2( DMNMessageType.DUPLICATED_RELATION_COLUMN, "Relation 
column '%s' is duplicated on node '%s'" );
     public static final Message2 RELATION_CELL_NOT_LITERAL                     
      = new Message2( DMNMessageType.RELATION_CELL_NOT_LITERAL, "Relation row 
'%d' contains a cell that is not a literal expression on node '%s'" );
     public static final Message2 RELATION_CELL_COUNT_MISMATCH                  
      = new Message2( DMNMessageType.RELATION_CELL_COUNT_MISMATCH, "Relation 
row '%d' contains the wrong number of cells on node '%s'" );
-    public static final Message1 ERRORS_EVAL_DS_NODE                           
      = new Message1( DMNMessageType.ERROR_EVAL_NODE, "Errors occured while 
evaluating Decision Service node '%s'.");
+    public static final Message1 ERRORS_EVAL_DS_NODE                           
      = new Message1( DMNMessageType.ERROR_EVAL_NODE, "Errors occurred while 
evaluating Decision Service node '%s'.");
     public static final Message2 ERROR_EVAL_DS_NODE                            
      = new Message2( DMNMessageType.ERROR_EVAL_NODE, "Error evaluating 
Decision Service node '%s': %s" );
     public static final Message2 ERROR_EVAL_BKM_NODE                           
      = new Message2( DMNMessageType.ERROR_EVAL_NODE, "Error evaluating 
Business Knowledge Model node '%s': %s" );
     public static final Message2 ERROR_EVAL_DECISION_NODE                      
      = new Message2( DMNMessageType.ERROR_EVAL_NODE, "Error evaluating 
Decision node '%s': %s" );


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to