diff options
author | Edoardo La Greca | 2025-08-05 21:22:45 +0200 |
---|---|---|
committer | Edoardo La Greca | 2025-08-05 21:22:45 +0200 |
commit | 445cbf2eacd4c59dfb6662fff03723e18b40639a (patch) | |
tree | ce4d061a5a50a9914caef2723825253e820b1991 /src/main/kotlin | |
parent | 6612bd0cc1299460eb9b28e2f557c3cc586c9152 (diff) |
remove old constructor calls
Diffstat (limited to 'src/main/kotlin')
-rw-r--r-- | src/main/kotlin/TransportLayerJavaNet.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/kotlin/TransportLayerJavaNet.kt b/src/main/kotlin/TransportLayerJavaNet.kt index c40b72b..1085100 100644 --- a/src/main/kotlin/TransportLayerJavaNet.kt +++ b/src/main/kotlin/TransportLayerJavaNet.kt @@ -27,8 +27,8 @@ class TransportLayerJavaNet : TransportLayer { */ private val outStream: OutputStream = this.socket.outputStream - constructor(address: String, port: UShort) : super(address, port) - constructor(fullAddress: String) : super(fullAddress) + constructor(address: String, port: UShort) + constructor(fullAddress: String) override fun close() { if (this.socket.isClosed) { |