From c49d0f37b97069a750fc5ddebde794c886964e87 Mon Sep 17 00:00:00 2001 From: Viktor Kolomeyko Date: Mon, 9 Jul 2018 12:19:02 +0100 Subject: [PATCH] Explicitly suppress unused parameters warnings which are now treated as errors when compiling in IntelliJ. (#1225) --- .../kotlin/net/corda/vega/scenarios/helpers/SIMMValuation.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/samples/simm-valuation-demo/src/system-test/scenario/kotlin/net/corda/vega/scenarios/helpers/SIMMValuation.kt b/samples/simm-valuation-demo/src/system-test/scenario/kotlin/net/corda/vega/scenarios/helpers/SIMMValuation.kt index 15f580da5e..266e01f295 100644 --- a/samples/simm-valuation-demo/src/system-test/scenario/kotlin/net/corda/vega/scenarios/helpers/SIMMValuation.kt +++ b/samples/simm-valuation-demo/src/system-test/scenario/kotlin/net/corda/vega/scenarios/helpers/SIMMValuation.kt @@ -33,11 +33,11 @@ class SIMMValuation(state: ScenarioState) : Substeps(state) { } } - fun runValuation(node: String) { + fun runValuation(@Suppress("UNUSED_PARAMETER") node: String) { TODO("not implemented") } - fun checkValuation(value: Long) { + fun checkValuation(@Suppress("UNUSED_PARAMETER") value: Long) { TODO("not implemented") } } \ No newline at end of file