Drop @Input from getData()

Remove `@Input` from the `getData()` method since it's built up from
other properties.

See gh-40572
This commit is contained in:
Phillip Webb
2024-10-22 11:13:32 -07:00
parent 9acbee7533
commit a9e50d67dd

View File

@@ -93,8 +93,7 @@ public abstract class GenerateAntoraPlaybook extends DefaultTask {
}
}
@Input
final Map<String, Object> getData() throws IOException {
private Map<String, Object> getData() throws IOException {
Map<String, Object> data = loadPlaybookTemplate();
addExtensions(data);
addSources(data);