dsmiley commented on code in PR #4037:
URL: https://github.com/apache/solr/pull/4037#discussion_r2679921546
##########
gradle/documentation/render-javadoc.gradle:
##########
@@ -333,29 +336,33 @@ class RenderJavadocTask extends DefaultTask {
opts << '-linksource'
}
opts << '-use'
- opts << [ '-locale', 'en_US' ]
- opts << [ '-windowtitle', title ]
- opts << [ '-doctitle', title ]
+ opts << ['-locale', 'en_US']
+ opts << ['-windowtitle', title]
+ opts << ['-doctitle', title]
if (!classpath.isEmpty()) {
- opts << [ '-classpath', classpath.asPath ]
+ opts << ['-classpath', classpath.asPath]
}
- opts << [ '-bottom', "<i>Copyright © 2000-${project.buildYear} Apache
Software Foundation. All Rights Reserved.</i>" ]
-
- opts << [ '-tag', 'lucene.experimental:a:WARNING: This API is experimental
and might change in incompatible ways in the next release.' ]
- opts << [ '-tag', 'lucene.internal:a:NOTE: This API is for internal
purposes only and might change in incompatible ways in the next release.' ]
- opts << [ '-tag', "lucene.spi:t:SPI Name (case-insensitive: if the name is
'htmlStrip', 'htmlstrip' can be used when looking up the service)." ]
-
- opts << [ '-doclet', "org.apache.lucene.missingdoclet.MissingDoclet" ]
- opts << [ '-docletpath', docletpath.asPath ]
- opts << [ '--missing-level', javadocMissingLevel ]
+ opts <<
+ ['-bottom', "<i>Copyright © 2000-${project.buildYear} Apache
Software Foundation. All Rights Reserved.</i>"]
+
+ opts <<
+ ['-tag', 'lucene.experimental:a:WARNING: This API is experimental and
might change in incompatible ways in the next release.']
+ opts <<
+ ['-tag', 'lucene.internal:a:NOTE: This API is for internal purposes
only and might change in incompatible ways in the next release.']
+ opts <<
+ ['-tag', "lucene.spi:t:SPI Name (case-insensitive: if the name is
'htmlStrip', 'htmlstrip' can be used when looking up the service)."]
Review Comment:
I'm now making newlines manually and IntelliJ isn't correcting me :-)
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]