Explicitly suppress unused parameters warnings which are now treated as errors when compiling in IntelliJ. (#1225)

This commit is contained in:
Viktor Kolomeyko 2018-07-09 12:19:02 +01:00 committed by GitHub
parent a2496a752c
commit c49d0f37b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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")
}
}