mirror of
https://github.com/corda/corda.git
synced 2025-03-23 20:45:23 +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
|
* 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
|
* 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
|
override val topic: String get() = TOPIC
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user