Copilot commented on code in PR #2253:
URL:
https://github.com/apache/incubator-kie-kogito-apps/pull/2253#discussion_r2282117721
##########
jitexecutor/jitexecutor-common/src/main/java/org/kie/kogito/jitexecutor/common/requests/MultipleResourcesPayload.java:
##########
@@ -49,11 +56,20 @@ public void setResources(List<ResourceWithURI> resources) {
this.resources = resources;
}
+ public boolean isStrictMode() {
+ return isStrictMode;
+ }
+
+ public void setStrictMode(boolean strictMode) {
+ isStrictMode = strictMode;
+ }
+
@Override
public String toString() {
return "MultipleResourcesPayload{" +
"mainURI='" + mainURI + '\'' +
- ", resources=" + resources +
+ ", resources=" + resources + '\'' +
Review Comment:
The single quote character is incorrectly placed after the resources
variable. It should be removed as resources is already a List object that
doesn't need string termination.
```suggestion
", resources=" + resources +
```
--
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]