diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-03-19 11:09:07 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-05-14 13:43:13 +0200 |
commit | 57e6b6210f481dbe03cc01b954e30cb365dd2b2e (patch) | |
tree | 94e1ac18974363f078b7abb1c4239d669557eb0f /runners/cli | |
parent | 3f2a790190da4f40ea6d8a976aa1929b2a1b002b (diff) | |
download | dokka-57e6b6210f481dbe03cc01b954e30cb365dd2b2e.tar.gz dokka-57e6b6210f481dbe03cc01b954e30cb365dd2b2e.tar.bz2 dokka-57e6b6210f481dbe03cc01b954e30cb365dd2b2e.zip |
Update to 1.4-M2, Native fails with an exception
Diffstat (limited to 'runners/cli')
-rw-r--r-- | runners/cli/src/main/kotlin/cli/main.kt | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/runners/cli/src/main/kotlin/cli/main.kt b/runners/cli/src/main/kotlin/cli/main.kt index 607a58a7..f0d22aff 100644 --- a/runners/cli/src/main/kotlin/cli/main.kt +++ b/runners/cli/src/main/kotlin/cli/main.kt @@ -71,7 +71,7 @@ class Arguments(val parser: DokkaArgumentsParser) : DokkaConfiguration.PassConfi "main" ) - override val classpath: List<String> by parser.repeatableOption( + override val classpath: List<String> by parser.repeatableOption<String>( listOf("-classpath"), "Classpath for symbol resolution" ) @@ -86,12 +86,12 @@ class Arguments(val parser: DokkaArgumentsParser) : DokkaConfiguration.PassConfi "Source file or directory (allows many paths separated by the system path separator)" ) { SourceRootImpl(it) } - override val samples: List<String> by parser.repeatableOption( + override val samples: List<String> by parser.repeatableOption<String>( listOf("-sample"), "Source root for samples" ) - override val includes: List<String> by parser.repeatableOption( + override val includes: List<String> by parser.repeatableOption<String>( listOf("-include"), "Markdown files to load (allows many paths separated by the system path separator)" ) @@ -150,7 +150,7 @@ class Arguments(val parser: DokkaArgumentsParser) : DokkaConfiguration.PassConfi "Disable documentation link to JDK" ) - override val suppressedFiles: List<String> by parser.repeatableOption( + override val suppressedFiles: List<String> by parser.repeatableOption<String>( listOf("-suppressedFile"), "" ) @@ -173,7 +173,7 @@ class Arguments(val parser: DokkaArgumentsParser) : DokkaConfiguration.PassConfi { Platform.DEFAULT } ) - override val targets: List<String> by parser.repeatableOption( + override val targets: List<String> by parser.repeatableOption<String>( listOf("-target"), "Generation targets" ) @@ -192,7 +192,7 @@ class Arguments(val parser: DokkaArgumentsParser) : DokkaConfiguration.PassConfi { mutableListOf() } ) - override val sourceLinks: MutableList<DokkaConfiguration.SourceLinkDefinition> by parser.repeatableOption( + override val sourceLinks: MutableList<DokkaConfiguration.SourceLinkDefinition> by parser.repeatableOption<DokkaConfiguration.SourceLinkDefinition>( listOf("-srcLink"), "Mapping between a source directory and a Web site for browsing the code" ) { |