mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
The task loaded the auto-configuration metadata twice and wrote every module's adoc file twice. When `load()` and `writeNavAdoc()` were introduced, the pre-existing loop that read each metadata file and called `writeModuleAdoc()` was left in place, so each file was generated once from `load()` and then again, identically, by the loop. Remove the redundant loop. The generated output is unchanged. See gh-51438 Signed-off-by: Alexander Makarov <alexander.makarov@nightsong.li>