Skip to content

Commit

Permalink
Use proper scope for method
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed May 19, 2023
1 parent f1cccb9 commit 2d60f95
Show file tree
Hide file tree
Showing 13 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
CiManagement cim = model.getCiManagement();
if (cim == null) {
startSection(getTitle());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
DistributionManagement distributionManagement = project.getDistributionManagement();
if (distributionManagement == null) {
startSection(getI18nString("overview.title"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public String getTitle() {
}

@Override
public void renderBody() {
protected void renderBody() {
startSection(title.trim() + " " + project.getName());

paragraph(description);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
IssueManagement issueManagement = model.getIssueManagement();
if (issueManagement == null) {
startSection(getTitle());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
List<License> licenses = project.getModel().getLicenses();

if (licenses.isEmpty()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
List<MailingList> mailingLists = model.getMailingLists();

if (mailingLists == null || mailingLists.isEmpty()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
List<String> modules = project.getModel().getModules();

if (modules == null || modules.isEmpty()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
PluginManagement projectPluginManagement = project.getPluginManagement();

if (projectPluginManagement == null
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
// === Section: Project Plugins.
renderSectionPlugins(true);

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
Scm scm = model.getScm();
if (scm == null
|| (anonymousConnection == null || anonymousConnection.isEmpty())
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
startSection(getI18nString("intro.title"));

// Introduction
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ protected String getI18Nsection() {
// ----------------------------------------------------------------------

@Override
public void renderBody() {
protected void renderBody() {
// Dependencies report

if (!dependencies.hasDependencies()) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ protected String getI18Nsection() {
}

@Override
public void renderBody() {
protected void renderBody() {
// Dependencies report

if (!dependencies.hasDependencies()) {
Expand Down

0 comments on commit 2d60f95

Please sign in to comment.