Remove unused parameter in AsciidoctorConventions
See gh-20380
This commit is contained in:
parent
ea45d8ef25
commit
fcaede70a9
|
|
@ -79,7 +79,7 @@ class AsciidoctorConventions {
|
||||||
asciidoctorTask.baseDirFollowsSourceDir();
|
asciidoctorTask.baseDirFollowsSourceDir();
|
||||||
Sync syncSource = createSyncDocumentationSourceTask(project, asciidoctorTask);
|
Sync syncSource = createSyncDocumentationSourceTask(project, asciidoctorTask);
|
||||||
if (asciidoctorTask instanceof AsciidoctorTask) {
|
if (asciidoctorTask instanceof AsciidoctorTask) {
|
||||||
configureHtmlOnlyAttributes(project, asciidoctorTask);
|
configureHtmlOnlyAttributes(asciidoctorTask);
|
||||||
syncSource.from(unzipResources, (resources) -> resources.into("asciidoc"));
|
syncSource.from(unzipResources, (resources) -> resources.into("asciidoc"));
|
||||||
asciidoctorTask.doFirst(new Action<Task>() {
|
asciidoctorTask.doFirst(new Action<Task>() {
|
||||||
|
|
||||||
|
|
@ -135,7 +135,7 @@ class AsciidoctorConventions {
|
||||||
asciidoctorTask.options(Collections.singletonMap("doctype", "book"));
|
asciidoctorTask.options(Collections.singletonMap("doctype", "book"));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void configureHtmlOnlyAttributes(Project project, AbstractAsciidoctorTask asciidoctorTask) {
|
private void configureHtmlOnlyAttributes(AbstractAsciidoctorTask asciidoctorTask) {
|
||||||
Map<String, Object> attributes = new HashMap<>();
|
Map<String, Object> attributes = new HashMap<>();
|
||||||
attributes.put("highlightjsdir", "js/highlight");
|
attributes.put("highlightjsdir", "js/highlight");
|
||||||
attributes.put("highlightjs-theme", "github");
|
attributes.put("highlightjs-theme", "github");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue