Question

Why a decompiled java files does not have any annotations in it?

Was it helpful?

Solution

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.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top