We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4921a3e commit 30bde97Copy full SHA for 30bde97
build.gradle.kts
@@ -46,11 +46,11 @@ tasks.withType(AbstractArchiveTask::class).configureEach {
46
47
tasks.javadoc {
48
options {
49
- this as StandardJavadocDocletOptions
50
-
51
- links(
52
- "https://docs.oracle.com/javase/8/docs/api/",
53
- "https://javadoc.io/doc/com.flowpowered/flow-math/1.0.3/"
54
- )
+ (this as? StandardJavadocDocletOptions)?.apply {
+ links(
+ "https://docs.oracle.com/javase/8/docs/api/",
+ "https://javadoc.io/doc/com.flowpowered/flow-math/1.0.3/"
+ )
+ }
55
}
56
0 commit comments