Skip to content

Commit

Permalink
ci(pre-commit): Apply automatic fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci-lite[bot] committed May 10, 2024
1 parent 3caf16e commit efa7630
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions libraries/Network/src/NetworkClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -184,12 +184,11 @@ NetworkClient::NetworkClient(int fd) : _connected(true), _timeout(WIFI_CLIENT_DE
_rxBuffer.reset(new NetworkClientRxBuffer(fd));
}

NetworkClient::~NetworkClient() {
}
NetworkClient::~NetworkClient() {}

void NetworkClient::stop() {
if (clientSocketHandle) {
clientSocketHandle->close();
clientSocketHandle->close();
}
clientSocketHandle = NULL;
_rxBuffer = NULL;
Expand Down

0 comments on commit efa7630

Please sign in to comment.