From aa21ab173d60bb69e50e7fc321e8b94c2815b6e8 Mon Sep 17 00:00:00 2001 From: "sebastian.sellmair" Date: Wed, 22 Jul 2020 14:31:11 +0200 Subject: Use Gradle's new Property/Provider APIs --- runners/cli/src/main/kotlin/cli/main.kt | 4 ---- 1 file changed, 4 deletions(-) (limited to 'runners/cli/src/main/kotlin') diff --git a/runners/cli/src/main/kotlin/cli/main.kt b/runners/cli/src/main/kotlin/cli/main.kt index a9c15ec1..43c46d92 100644 --- a/runners/cli/src/main/kotlin/cli/main.kt +++ b/runners/cli/src/main/kotlin/cli/main.kt @@ -159,9 +159,6 @@ private fun parseSourceSet(args: Array): DokkaConfiguration.DokkaSourceS val includeNonPublic: Boolean by parser.option(ArgType.Boolean, description = "Include non public") .default(DokkaDefaults.includeNonPublic) - val includeRootPackage by parser.option(ArgType.Boolean, description = "Include root package") - .default(DokkaDefaults.includeRootPackage) - val reportUndocumented by parser.option(ArgType.Boolean, description = "Report undocumented members") .default(DokkaDefaults.reportUndocumented) @@ -234,7 +231,6 @@ private fun parseSourceSet(args: Array): DokkaConfiguration.DokkaSourceS override val samples = samples.toMutableSet() override val includes = includes.toMutableSet() override val includeNonPublic = includeNonPublic - override val includeRootPackage = includeRootPackage override val reportUndocumented = reportUndocumented override val skipEmptyPackages = skipEmptyPackages override val skipDeprecated = skipDeprecated -- cgit