Skip to content

Commit

Permalink
[Java] Fix Javadoc location.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Jan 13, 2025
1 parent 03dc5e8 commit 98b23b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ subprojects {
options.docEncoding = 'UTF-8'
options.charSet = 'UTF-8'
options.links("https://www.javadoc.io/doc/org.agrona/agrona/${libs.versions.agrona.get()}/")
if (buildJavaVersion >= 23) { // early access JavaDoc location is different
if (buildJavaVersion > 23) { // early access JavaDoc location is different
options.links("https://download.java.net/java/early_access/jdk${buildJavaVersion}/docs/api/")
}
else {
Expand Down

0 comments on commit 98b23b6

Please sign in to comment.