SYaoJun opened a new pull request, #766: URL: https://github.com/apache/geaflow/pull/766
### What changes were proposed in this pull request? <!--Please describe the major changes for this PR--> The code uses `Collections.EMPTY_LIST` which is a pre-generics raw type constant. This causes unchecked conversion warnings and lacks type safety. Replace with `Collections.emptyList()` which returns a properly typed `List<T>` and eliminates compiler warnings. ### How was this PR tested? - [ ] Tests have Added for the changes - [ ] Production environment verified -- 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]
