mirror of
https://github.com/internetarchive/heritrix3.git
synced 2026-07-13 11:07:12 +00:00
09e3ff3568
JavaDoc comments need to be directly above a class, method or field declaration to be used by IDEs and generated documentation. We had some doc comments that were attached to instance initialization blocks and thus were being ignored. This invalid doc comment positioning was presumably an accidental consequence of the conversion of fields to KeyedProperties. This change moves most of the dangling doc comments to setter methods where it can be seen by tools. There were a couple of dangling doc comments above package statements. These are moved above the class declaration or removed entirely when empty.