Skip to content

Commit

Permalink
Polishing: Remove unnecessary module property
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasdo committed May 19, 2024
1 parent 74c0b50 commit ca2a11f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ public String renderEvents(ApplicationModule module) {
return builder.toString();
}

public String renderConfigurationProperties(ApplicationModule module, List<ModuleProperty> properties) {
public String renderConfigurationProperties(List<ModuleProperty> properties) {

if (properties.isEmpty()) {
return "none";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ String toModuleCanvas(ApplicationModule module, CanvasOptions options) {

// Properties
.append(addTableRow("Properties",
asciidoctor.renderConfigurationProperties(module, properties.getModuleProperties(module)), options)) //
asciidoctor.renderConfigurationProperties(properties.getModuleProperties(module)), options)) //
.append(startOrEndTable())
.toString();
}
Expand Down

0 comments on commit ca2a11f

Please sign in to comment.