From 91d8de32c4597894c53d1863b94befbecbd18c13 Mon Sep 17 00:00:00 2001 From: Kyriakos Tharrouniatis Date: Thu, 13 Feb 2020 14:02:21 +0000 Subject: [PATCH] Warning fix: Add else block to when statement --- .../kotlin/com/r3/dbfailure/workflows/DbListenerService.kt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/testing/cordapps/dbfailure/dbfworkflows/src/main/kotlin/com/r3/dbfailure/workflows/DbListenerService.kt b/testing/cordapps/dbfailure/dbfworkflows/src/main/kotlin/com/r3/dbfailure/workflows/DbListenerService.kt index 128b003d71..6f5c201e40 100644 --- a/testing/cordapps/dbfailure/dbfworkflows/src/main/kotlin/com/r3/dbfailure/workflows/DbListenerService.kt +++ b/testing/cordapps/dbfailure/dbfworkflows/src/main/kotlin/com/r3/dbfailure/workflows/DbListenerService.kt @@ -143,6 +143,9 @@ class DbListenerService(services: AppServiceHub) : SingletonSerializeAsToken() { ) log.info("SQL result: ${statement.resultSet}") } + else -> { + // do nothing, everything else must be handled elsewhere + } } } }