rdblue commented on a change in pull request #1217:
URL: https://github.com/apache/iceberg/pull/1217#discussion_r457680593
##########
File path: tasks.gradle
##########
@@ -25,6 +25,20 @@ task aggregateJavadoc(type: Javadoc) {
source subprojects.javadoc.source
destinationDir
project.rootProject.file("site/docs/javadoc/${getJavadocVersion()}")
classpath = project.rootProject.files(subprojects.javadoc.classpath)
+
+ final JAVADOC_FIX_SEARCH_STR = '\n\n' +
+ 'getURLPrefix = function(ui) {\n' +
+ ' return \'\';\n' +
+ '};\n'
+
+ doLast {
+ // Fix bug with search
+ if (JavaVersion.current() >= JavaVersion.VERSION_11) {
Review comment:
Oh, the search is only available with Java 11? Then that's a nice reason
to keep it as you have it here.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]