Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixed regression in the maven site rendering #537

Merged
merged 2 commits into from
Jan 26, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -97,16 +97,18 @@ public String getText( String key )

protected void renderWarningIcon()
{
sink.figure();
// a rendering regression was fixed here,
// putting figure back will reintroduce the regression.
// https://github.com/mojohaus/versions-maven-plugin/issues/536
sink.figureGraphics( "images/icon_warning_sml.gif" );
sink.figure_();
}

protected void renderSuccessIcon()
{
sink.figure();
// a rendering regression was fixed here,
// putting figure back will reintroduce the regression.
// https://github.com/mojohaus/versions-maven-plugin/issues/536
sink.figureGraphics( "images/icon_success_sml.gif" );
sink.figure_();
}

protected boolean equals( ArtifactVersion v1, ArtifactVersion v2 )
Expand Down