Senrian opened a new pull request, #13725: URL: https://github.com/apache/skywalking/pull/13725
## Description Replace deprecated `Collections.EMPTY_*` static fields with their `empty*()` method equivalents to avoid raw type warnings. ## Changes - Replace `Collections.EMPTY_MAP` with `Collections.emptyMap()` - Replace `Collections.EMPTY_LIST` with `Collections.emptyList()` - Replace `Collections.EMPTY_SET` with `Collections.emptySet()` This fix improves code quality by eliminating unchecked warning messages during compilation. -- 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]
