Skip to content

Commit 74e367d

Browse files
committed
[Java] Fix JavaDoc URI for JDK 17 GA.
1 parent 86e7692 commit 74e367d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ subprojects {
190190
options.docEncoding = 'UTF-8'
191191
options.charSet = 'UTF-8'
192192
options.links("https://www.javadoc.io/doc/org.agrona/agrona/${agronaVersion}/")
193-
if (buildJavaVersion >= 17) { // early access JavaDoc location is different
193+
if (buildJavaVersion >= 18) { // early access JavaDoc location is different
194194
options.links("https://download.java.net/java/early_access/jdk${buildJavaVersion}/docs/api/")
195195
}
196196
else if (buildJavaVersion >= 11) {

0 commit comments

Comments
 (0)