From 706af114e3eb34bf91f3c3a25515c21ae7e534a2 Mon Sep 17 00:00:00 2001 From: Seppo Takalo Date: Thu, 10 Jan 2019 11:09:53 +0200 Subject: [PATCH] Remove extra @param values --- features/netsocket/DTLSSocket.h | 1 - features/netsocket/TLSSocket.h | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/features/netsocket/DTLSSocket.h b/features/netsocket/DTLSSocket.h index c1573b4dbc..460f530398 100644 --- a/features/netsocket/DTLSSocket.h +++ b/features/netsocket/DTLSSocket.h @@ -38,7 +38,6 @@ public: /** Create an uninitialized DTLS socket. * * Must call open to initialize the socket on a network stack. - * @param _udp_socket Underlying transport socket. */ DTLSSocket() : DTLSSocketWrapper(&_udp_socket) {} diff --git a/features/netsocket/TLSSocket.h b/features/netsocket/TLSSocket.h index 430b4d6706..ccb6c69ea8 100644 --- a/features/netsocket/TLSSocket.h +++ b/features/netsocket/TLSSocket.h @@ -42,7 +42,6 @@ public: /** Create an uninitialized socket. * * Must call open to initialize the socket on a network stack. - * @param tcp_socket Underlying transport socket. */ TLSSocket() : TLSSocketWrapper(&tcp_socket) {} @@ -53,7 +52,7 @@ public: /** Opens a socket. * * Creates a network socket on the network stack of the given - * network interface. + * network interface. * * @note TLSSocket cannot be reopened after closing. It should be destructed to * clear internal TLS memory structures.