Skip to content

Commit

Permalink
(doc) Remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
pzygielo committed Jan 29, 2022
1 parent a28dce6 commit 56ef7be
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ protected void executeReport( Locale locale )

for ( BuildJob buildJob : buildJobs )
{
renderBuildJob( buildJob, locale );
renderBuildJob( buildJob );
}

sink.table_();
Expand Down Expand Up @@ -279,7 +279,7 @@ else if ( BuildJob.Result.SKIPPED.equals( buildJob.getResult() ) )

}

private void renderBuildJob( BuildJob buildJob, Locale locale )
private void renderBuildJob( BuildJob buildJob )
{
Sink sink = getSink();
sink.tableRow();
Expand Down

0 comments on commit 56ef7be

Please sign in to comment.