diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2019-08-06 12:55:01 +0300 |
---|---|---|
committer | Kamil Doległo <kamilok1965@interia.pl> | 2019-08-06 13:07:20 +0300 |
commit | bbb14aff014f7d0e7fb4f572084d607abecdbbd9 (patch) | |
tree | ebab10ee82b8c817400013283e645c063d77f5bb /runners/maven-plugin | |
parent | f12c70ec31188b6dcdef1b588964d85a4d57ce41 (diff) | |
download | dokka-bbb14aff014f7d0e7fb4f572084d607abecdbbd9.tar.gz dokka-bbb14aff014f7d0e7fb4f572084d607abecdbbd9.tar.bz2 dokka-bbb14aff014f7d0e7fb4f572084d607abecdbbd9.zip |
Remove TODOs
Diffstat (limited to 'runners/maven-plugin')
-rw-r--r-- | runners/maven-plugin/src/main/kotlin/DokkaMojo.kt | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt b/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt index 5e45af9a..fb11ecac 100644 --- a/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt +++ b/runners/maven-plugin/src/main/kotlin/DokkaMojo.kt @@ -175,12 +175,12 @@ abstract class AbstractDokkaMojo : AbstractMojo() { languageVersion = languageVersion, apiVersion = apiVersion, moduleName = moduleName, - suppressedFiles = suppressedFiles, // TODO: Should we implement this? - sinceKotlin = sinceKotlin, // TODO: Should we implement this? - analysisPlatform = if (platform.isNotEmpty()) Platform.fromString(platform) else Platform.DEFAULT, // TODO: Should we implement this? - targets = targets, // TODO: Should we implement this? - includeNonPublic = includeNonPublic, // TODO: Should we implement this? - includeRootPackage = includeRootPackage // TODO: Should we implement this? + suppressedFiles = suppressedFiles, + sinceKotlin = sinceKotlin, + analysisPlatform = if (platform.isNotEmpty()) Platform.fromString(platform) else Platform.DEFAULT, + targets = targets, + includeNonPublic = includeNonPublic, + includeRootPackage = includeRootPackage ) val configuration = DokkaConfigurationImpl( @@ -189,7 +189,7 @@ abstract class AbstractDokkaMojo : AbstractMojo() { impliedPlatforms = impliedPlatforms, cacheRoot = cacheRoot, passesConfigurations = listOf(passConfiguration), - generateIndexPages = generateIndexPages // TODO: Should we implement this? + generateIndexPages = generateIndexPages ) val gen = DokkaGenerator(configuration, MavenDokkaLogger(log)) |