mirror of
https://github.com/corda/corda.git
synced 2025-06-14 13:18:18 +00:00
Fix various deprecated warnings
* Changed deprecated kotlin.reflect.primaryConstructor to kotlin.reflect.full.primaryConstructor * Changed deprecated kotlin.reflect.memberProperties to kotlin.reflect.full.memberProperties * Changed deprecated kotlin.reflect.declaredMemberProperties to kotlin.reflect.full.declaredMemberProperties * Changed deprecated AllComposition to AllOf * Changed deprecated AnyComposition to AnyOf * Changed deprecated kotlin.reflect.KotlinReflectionInternalError to kotlin.reflect.jvm.internal.KotlinReflectionInternalError * Changed deprecated HostAndPort.hostText to HostAndPort.host * Removed duplicated method net.corda.core.node.recordTransactions
This commit is contained in:
@ -41,7 +41,7 @@ class ArtemisTcpTransport {
|
||||
): TransportConfiguration {
|
||||
val options = mutableMapOf<String, Any?>(
|
||||
// Basic TCP target details
|
||||
TransportConstants.HOST_PROP_NAME to hostAndPort.hostText,
|
||||
TransportConstants.HOST_PROP_NAME to hostAndPort.host,
|
||||
TransportConstants.PORT_PROP_NAME to hostAndPort.port,
|
||||
|
||||
// Turn on AMQP support, which needs the protocol jar on the classpath.
|
||||
|
Reference in New Issue
Block a user