Skip to content

Commit

Permalink
Fix incorrect ChoiceFormat range
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-o committed May 19, 2023
1 parent 0413d65 commit f1cccb9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ public class DependenciesRenderer extends AbstractProjectInfoRenderer {
private final DecimalFormat fileLengthDecimalFormat;

private final MessageFormat javaVersionFormat =
new MessageFormat("{0,choice,0#|1.1<{0,number,0.0}|9#{0,number,0}}", Locale.ROOT);
new MessageFormat("{0,choice,0#|1.1#{0,number,0.0}|9#{0,number,0}}", Locale.ROOT);

/**
* @since 2.1.1
Expand Down

0 comments on commit f1cccb9

Please sign in to comment.