mirror of
https://github.com/corda/corda.git
synced 2024-12-20 05:28:21 +00:00
Remove @Suppress now we use standard Kotlin Int
This commit is contained in:
parent
0157018901
commit
db131eb2c0
@ -37,7 +37,7 @@ object ExitServerProtocol {
|
||||
* This takes a Java Integer rather than Kotlin Int as that is what we end up with in the calling map and currently
|
||||
* we do not support coercing numeric types in the reflective search for matching constructors
|
||||
*/
|
||||
class Broadcast(@Suppress("PLATFORM_CLASS_MAPPED_TO_KOTLIN") val exitCode: Int) : ProtocolLogic<Boolean>() {
|
||||
class Broadcast(val exitCode: Int) : ProtocolLogic<Boolean>() {
|
||||
|
||||
override val topic: String get() = TOPIC
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user