This PR fixes broken Javadoc tags.
Comment From: sbrannen
Out of curiosity, how did you notice all of those broken tags?
Regarding the Javadoc for org.springframework.asm.ClassWriter
, the following is our policy on changes to the ASM code.
Please refrain from modifying classes under
org.springframework.asm
,org.springframework.cglib
, andorg.springframework.objenesis
. Those include repackaged forks of the third-party libraries ASM, CGLIB, and Objenesis. Any refactoring to those classes should take place upstream in the originating repository. The Spring Framework will then pick up the changes when syncing with official updates of the forked third-party libraries.
So I'll simply revert that change when merging.
Comment From: sbrannen
This has been merged into main
.
Thanks
Comment From: izeye
@sbrannen Thanks for the review and spotting the accidental change on the ASM module.
Out of curiosity, how did you notice all of those broken tags?
I just found one and then searched to fix similar occurrences.
Comment From: izeye
I created https://gitlab.ow2.org/asm/asm/-/merge_requests/321 to fix it in the upstream module.