removed unnecessary check and options

This commit is contained in:
Andrew Strelsky 2022-11-17 17:26:21 -05:00
parent 5b1eb8ef32
commit 7c596c090d
No known key found for this signature in database
GPG Key ID: F33EB9033EFF4FDE

View File

@ -124,11 +124,6 @@ task createJavadocs(type: Javadoc, description: 'Generate javadocs for all proje
// Must add classpath for main and test source sets. Javadoc will fail if it cannot
// find referenced classes.
classpath = rootProject.ext.ghidraPath
// If we don't exclude module directories, the javascript search feature doesn't work
if (JavaVersion.current().isJava11()) {
options.addBooleanOption("-no-module-directories", true)
}
// generate documentation using html5
options.addBooleanOption("html5", true)