Copilot commented on code in PR #6553:
URL: 
https://github.com/apache/incubator-kie-drools/pull/6553#discussion_r2676167541


##########
kie-dmn/kie-dmn-core/src/main/java/org/kie/dmn/core/impl/AfterEvaluateDecisionTableEventImpl.java:
##########
@@ -86,9 +88,14 @@ public List<String> getMatchesIds() {
     public List<String> getSelectedIds() {return firedIds == null ? 
Collections.emptyList() : firedIds;

Review Comment:
   The closing brace is misplaced on the same line as the return statement. It 
should be on the next line for consistency with the coding style used elsewhere 
in the codebase.
   ```suggestion
       public List<String> getSelectedIds() {
           return firedIds == null ? Collections.emptyList() : firedIds;
   ```



-- 
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]

Reply via email to