Skip to content

Commit

Permalink
report verbosity
Browse files Browse the repository at this point in the history
  • Loading branch information
sultan committed Oct 15, 2022
1 parent 793f0d8 commit 52535d4
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,9 @@ protected void renderSummaryTableRow( Dependency artifact, ArtifactVersions deta
protected void renderDependencyDetailTable( Dependency artifact, ArtifactVersions details, boolean includeScope )
{
final SinkEventAttributes headerAttributes = new SinkEventAttributeSet();
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "80%" );
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "70%" );
final SinkEventAttributes cellAttributes = new SinkEventAttributeSet();
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "20%" );
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "30%" );
sink.table();
sink.tableRows( new int[] { Sink.JUSTIFY_RIGHT, Sink.JUSTIFY_LEFT }, false );
sink.tableRow();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ else if ( newestUpdateCache.get( details, of( MAJOR ) ) != null )
protected void renderDependencyDetail( Dependency artifact, ArtifactVersions details )
{
ArtifactVersion[] allUpdates = allUpdatesCache.get( details, empty() );
if ( true && allUpdates.length == 0 )
if ( 1 == 1 && allUpdates.length == 0 )
{
return;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -313,9 +313,9 @@ private void renderPluginDetail( Dependency artifact, PluginUpdatesDetails plugi
private void renderPluginDetailTable( PluginUpdatesDetails plugin )
{
final SinkEventAttributes headerAttributes = new SinkEventAttributeSet();
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "80%" );
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "70%" );
final SinkEventAttributes cellAttributes = new SinkEventAttributeSet();
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "20%" );
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "30%" );
sink.table();
sink.tableRows( new int[] { Sink.JUSTIFY_RIGHT, Sink.JUSTIFY_LEFT }, false );
sink.tableRow();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,9 +178,9 @@ private void renderPropertySummaryTableRow( Property property, PropertyVersions
protected void renderPropertyDetailTable( Property property, PropertyVersions details )
{
final SinkEventAttributes headerAttributes = new SinkEventAttributeSet();
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "80%" );
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "70%" );
final SinkEventAttributes cellAttributes = new SinkEventAttributeSet();
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "20%" );
headerAttributes.addAttribute( SinkEventAttributes.WIDTH, "30%" );
sink.table();
sink.tableRows( new int[] { Sink.JUSTIFY_RIGHT, Sink.JUSTIFY_LEFT }, false );
sink.tableRow();
Expand Down Expand Up @@ -422,7 +422,7 @@ else if ( newestUpdateCache.get( details, of( MAJOR ) ) != null )
private void renderPropertyDetail( Property property, PropertyVersions details )
{
ArtifactVersion[] allUpdates = allUpdatesCache.get( details, empty() );
if ( true && allUpdates.length == 0 )
if ( 1 == 1 && allUpdates.length == 0 )
{
return;
}
Expand Down

0 comments on commit 52535d4

Please sign in to comment.