Skip to content

Commit

Permalink
spring-projectsGH-644: rename for consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
tobHai committed Jun 22, 2024
1 parent bf39bee commit c749de7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,18 +182,18 @@ public Documenter writeDocumentation() {
* <li>The Module Canvas for each module.</li>
* </ul>
*
* @param options must not be {@literal null}.
* @param diagramOptions must not be {@literal null}.
* @param canvasOptions must not be {@literal null}.
* @return the current instance, will never be {@literal null}.
*/
public Documenter writeDocumentation(DiagramOptions options, CanvasOptions canvasOptions) {
public Documenter writeDocumentation(DiagramOptions diagramOptions, CanvasOptions canvasOptions) {

if (this.options.clean) {
clearOutputFolder();
}

return writeModulesAsPlantUml(options)
.writeIndividualModulesAsPlantUml(options) //
return writeModulesAsPlantUml(diagramOptions)
.writeIndividualModulesAsPlantUml(diagramOptions) //
.writeModuleCanvases(canvasOptions);
}

Expand Down

0 comments on commit c749de7

Please sign in to comment.