mirror of
https://github.com/corda/corda.git
synced 2025-03-14 08:16:32 +00:00
Explicitly suppress unused parameters warnings which are now treated as errors when compiling in IntelliJ. (#1225)
This commit is contained in:
parent
a2496a752c
commit
c49d0f37b9
@ -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")
|
||||
}
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user