diff options
author | Kamil Doległo <9080183+kamildoleglo@users.noreply.github.com> | 2021-04-06 15:34:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-06 15:34:39 +0200 |
commit | 6b2e9382a298045c1d3c39bdb3c33cdc0eebf38d (patch) | |
tree | 978d2cac1d7cd91f322fff2da8186797aadde5b9 /plugins/base/base-test-utils/src/main/kotlin/testRunner | |
parent | 6756bad5e9d5ebd996275e17bc3ea4f07aea54f4 (diff) | |
download | dokka-6b2e9382a298045c1d3c39bdb3c33cdc0eebf38d.tar.gz dokka-6b2e9382a298045c1d3c39bdb3c33cdc0eebf38d.tar.bz2 dokka-6b2e9382a298045c1d3c39bdb3c33cdc0eebf38d.zip |
Fix some compiler warnings (#1812)
Diffstat (limited to 'plugins/base/base-test-utils/src/main/kotlin/testRunner')
-rw-r--r-- | plugins/base/base-test-utils/src/main/kotlin/testRunner/baseTestApi.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/base/base-test-utils/src/main/kotlin/testRunner/baseTestApi.kt b/plugins/base/base-test-utils/src/main/kotlin/testRunner/baseTestApi.kt index 7604521b..792754fb 100644 --- a/plugins/base/base-test-utils/src/main/kotlin/testRunner/baseTestApi.kt +++ b/plugins/base/base-test-utils/src/main/kotlin/testRunner/baseTestApi.kt @@ -86,7 +86,7 @@ class BaseTestBuilder : TestBuilder<BaseTestMethods>() { var documentablesTransformationStage: (DModule) -> Unit = {} var pagesGenerationStage: (RootPageNode) -> Unit = {} var pagesTransformationStage: (RootPageNode) -> Unit = {} - var renderingStage: (RootPageNode, DokkaContext) -> Unit = { a, b -> } + var renderingStage: (RootPageNode, DokkaContext) -> Unit = { _, _ -> } override fun build() = BaseTestMethods( pluginsSetupStage, @@ -105,4 +105,4 @@ abstract class BaseAbstractTest(logger: TestLogger = TestLogger(DokkaConsoleLogg ::BaseTestBuilder, ::BaseDokkaTestGenerator, logger, -)
\ No newline at end of file +) |