Why a decompiled java files does not have any annotations in it?
Why does java decompiler does not save annotations [closed]
Asked Answered
Some annotations have their retention set to source code only.
See the Annotation Retention Policy:
Annotation retention policy. The constants of this enumerated type describe the various policies for retaining annotations. They are used in conjunction with the Retention meta-annotation type to specify how long annotations are to be retained ..
.. SOURCE Annotations are to be discarded by the compiler.
© 2022 - 2024 — McMap. All rights reserved.