Cleaned up "filename" configuration option from TCP. (Only available for Stdout)

This commit is contained in:
Mike Yaacoub
2023-01-05 14:26:19 -05:00
parent 6146d186d9
commit ffcc294143
2 changed files with 0 additions and 8 deletions

View File

@@ -82,10 +82,6 @@ public class TcpClientAdapterSpace {
Param.defaultTo("port",12345)
.setDescription("the designated port to connect to on the socket")
)
.add(
Param.defaultTo("filename","tcpclient")
.setDescription("this is the name of the output file. If 'stdout', output is sent to tcpclient, not a file.")
)
.add(
Param.defaultTo("newline",true)
.setDescription("whether to automatically add a missing newline to the end of any output\n")

View File

@@ -138,10 +138,6 @@ public class TcpServerAdapterSpace implements AutoCloseable{
Param.defaultTo("port",12345)
.setDescription("the designated port to connect to on the socket")
)
.add(
Param.defaultTo("filename","tcpserver")
.setDescription("this is the name of the output file. If 'stdout', output is sent to tcpserver, not a file.")
)
.add(
Param.defaultTo("newline",true)
.setDescription("whether to automatically add a missing newline to the end of any output\n")