Skip to content

Commit

Permalink
refactor: remove comments
Browse files Browse the repository at this point in the history
  • Loading branch information
machi1990 committed Oct 31, 2019
1 parent 57f3986 commit 91c5c9b
Showing 1 changed file with 0 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ final class SummaryTableDocFormatter implements DocFormatter {
private static final String TABLE_ROW_FORMAT = "\n\na|%s [[%s]]`link:#%s[%s]`\n\n[.description]\n--\n%s\n--|%s %s\n|%s\n";
private static final String TABLE_SECTION_ROW_FORMAT = "\n\nh|[[%s]]link:#%s[%s]\nh|Type\nh|Default";
private static final String TABLE_HEADER_FORMAT = "[.configuration-legend]%s\n[.configuration-reference, cols=\"80,.^10,.^10\"]\n|===";
// private static final String MORE_INFO_ABOUT_SECTION_FORMAT = "link:#%s[icon:plus-circle[], title=More information about %s]";

private String anchorPrefix = "";

Expand Down Expand Up @@ -85,9 +84,6 @@ public void format(Writer writer, ConfigDocKey configDocKey) throws IOException

@Override
public void format(Writer writer, ConfigDocSection configDocSection) throws IOException {
// final String moreInfoAboutSection = String.format(MORE_INFO_ABOUT_SECTION_FORMAT, getAnchor(configDocSection.getName()),
// configDocSection.getSectionDetailsTitle());
// final String moreInfoAboutSection = configDocSection.getSectionDetailsTitle();
String anchor = anchorPrefix + getAnchor(configDocSection.getSectionDetailsTitle());
final String sectionRow = String.format(TABLE_SECTION_ROW_FORMAT, anchor, anchor,
configDocSection.getSectionDetailsTitle());
Expand Down

0 comments on commit 91c5c9b

Please sign in to comment.