Skip to content

Commit

Permalink
NO-JIRA Fix wrong JAVA_20 version constant value (#4914)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardo-pilastri-sonarsource authored Oct 24, 2024
1 parent 1c04083 commit 95f1efb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public class JavaVersionImpl implements JavaVersion {
private static final int JAVA_17 = 17;
private static final int JAVA_18 = 18;
private static final int JAVA_19 = 19;
private static final int JAVA_20 = 21;
private static final int JAVA_20 = 20;
private static final int JAVA_21 = 21;
private static final int JAVA_22 = 22;
public static final int MAX_SUPPORTED = JAVA_22;
Expand Down

0 comments on commit 95f1efb

Please sign in to comment.