Skip to content

Commit

Permalink
Display "Latest" Versions in Reports Summary
Browse files Browse the repository at this point in the history
  • Loading branch information
sultan authored and slachiewicz committed Dec 1, 2021
1 parent b4f77a1 commit e6dcb4f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Expand Up @@ -291,7 +291,7 @@ protected void renderDependencySummaryTableHeader( boolean includeScope, boolean
sink.tableHeaderCell_();
}
sink.tableHeaderCell();
sink.text( getText("report.latestSubIncremental") );
sink.text( getText( "report.latestSubIncremental" ) );
sink.tableHeaderCell_();
sink.tableHeaderCell();
sink.text( getText( "report.latestIncremental" ) );
Expand Down Expand Up @@ -451,7 +451,7 @@ else if ( details.getOldestUpdate( UpdateScope.MAJOR ) != null )
}
else if ( equals( versions[i], details.getNewestUpdate( UpdateScope.SUBINCREMENTAL ) ) )
{
sink.text( getText("report.latestSubIncremental") );
sink.text( getText( "report.latestSubIncremental" ) );
}
else if ( equals( versions[i], details.getOldestUpdate( UpdateScope.INCREMENTAL ) ) )
{
Expand Down Expand Up @@ -733,7 +733,7 @@ else if ( versions.getOldestUpdate( UpdateScope.MAJOR ) != null )
}
else if ( equals( artifactVersions[i], versions.getNewestUpdate( UpdateScope.SUBINCREMENTAL ) ) )
{
sink.text( getText("report.latestSubIncremental") );
sink.text( getText( "report.latestSubIncremental" ) );
}
else if ( equals( artifactVersions[i], versions.getOldestUpdate( UpdateScope.INCREMENTAL ) ) )
{
Expand Down
Expand Up @@ -243,7 +243,7 @@ private void renderSummaryTableHeader()
sink.text( getText( "report.currentVersion" ) );
sink.tableHeaderCell_();
sink.tableHeaderCell();
sink.text( getText("report.latestSubIncremental") );
sink.text( getText( "report.latestSubIncremental" ) );
sink.tableHeaderCell_();
sink.tableHeaderCell();
sink.text( getText( "report.latestIncremental" ) );
Expand Down Expand Up @@ -456,7 +456,7 @@ else if ( details.getArtifactVersions().getOldestUpdate( UpdateScope.MAJOR ) !=
else if ( equals( versions[i],
details.getArtifactVersions().getNewestUpdate( UpdateScope.SUBINCREMENTAL ) ) )
{
sink.text( getText("report.latestSubIncremental") );
sink.text( getText( "report.latestSubIncremental" ) );
}
else if ( equals( versions[i],
details.getArtifactVersions().getOldestUpdate( UpdateScope.INCREMENTAL ) ) )
Expand Down

0 comments on commit e6dcb4f

Please sign in to comment.