Skip to content

Commit b2de6f2

Browse files
committed
GSMClient GSMSSLClient: align constructor to other Client classes
Remove the possibility to set socket timeout from constructor. The preferred way should be using setSocketTimeout() method.
1 parent d6f7407 commit b2de6f2

File tree

4 files changed

+0
-55
lines changed

4 files changed

+0
-55
lines changed

libraries/GSM/src/GSMClient.cpp

-24
This file was deleted.

libraries/GSM/src/GSMClient.h

-4
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@
2626
namespace arduino {
2727

2828
class GSMClient : public AClient {
29-
public:
30-
GSMClient();
31-
32-
private:
3329
NetworkInterface *getNetwork() {
3430
return GSM.getNetwork();
3531
}

libraries/GSM/src/GSMSSLClient.cpp

-24
This file was deleted.

libraries/GSM/src/GSMSSLClient.h

-3
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,6 @@ extern const char CA_CERTIFICATES[];
2828
namespace arduino {
2929

3030
class GSMSSLClient : public arduino::ASslClient {
31-
public:
32-
GSMSSLClient();
33-
3431
private:
3532
NetworkInterface *getNetwork() {
3633
return GSM.getNetwork();

0 commit comments

Comments
 (0)