mirror of
https://github.com/corda/corda.git
synced 2025-03-22 12:05:59 +00:00
Remove @Suppress now we use standard Kotlin Int
This commit is contained in:
parent
1557a82992
commit
8d31df5fe1
@ -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…
x
Reference in New Issue
Block a user