Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 609 Bytes

File metadata and controls

8 lines (7 loc) · 609 Bytes

Do not 'claim' annotations in annotation processors; Processor#process should unconditionally return false. Claiming annotations prevents other processors from seeing the annotations, which there's usually no reason to do. It's also fragile, since it relies on the order the processors run in, and there's no robust way in most build systems to ensure a particular processor sees the annotations first.