Copilot commented on code in PR #10773:
URL: https://github.com/apache/cloudstack/pull/10773#discussion_r2073001575
##########
engine/schema/src/main/java/com/cloud/storage/dao/GuestOSDaoImpl.java:
##########
@@ -152,4 +153,14 @@ public Pair<List<? extends GuestOS>, Integer>
listGuestOSByCriteria(Long startIn
return new Pair<>(result.first(), result.second());
}
Review Comment:
[nitpick] Consider adding a brief comment for the new listIdsByCategoryId
method to clarify its purpose and usage in retrieving guest OS IDs by category.
```suggestion
/**
* Retrieves a list of guest OS IDs that belong to the specified
category.
*
* @param categoryId the ID of the guest OS category
* @return a list of guest OS IDs
*/
```
--
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]